Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
[email protected] webmail now available. Want one? Go here.
Cannot use outlook/hotmail/live here to register as they blocking our mail servers. #microsoftdeez
Obey the Epel!

Paste

Pasted as C by neo ( 3 years ago )
#include<stdio.h>
#include<time.h>


int main()
{

    struct timespec t;
    t.tv_sec = 0;
    t.tv_nsec = 666666L;
    

    while (1)
    {   
        
        for(int i = 1; i<=50; i++)
        {
            printf("o");
            
            printf("\b ");
            nanosleep(&t, NULL);
        }    
        
       
        for(int i = 1; i<=50; i++)
        printf("\b");
    
    }
return 0;
    
}

 

Revise this Paste

Parent: 115773
Your Name: Code Language: