document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include<stdio.h>
  2. #include<unistd.h>
  3.  
  4. int main(void)
  5. {
  6.         int ctr = 0;
  7.         while(1){
  8.                 usleep(100000);
  9.                 printf("line #%d\\r", ++ctr);
  10.         }
  11. }
');