torture.c (304B)
1 // 2 // torture ttyplot 3 // 4 // License: Apache 2.0 5 // 6 7 #include <stdio.h> 8 #include <stdlib.h> 9 #include <time.h> 10 #include <unistd.h> 11 12 int main() { 13 14 srand(time(NULL)); 15 16 for(;;) { 17 printf("%d %d\n", rand()%100,rand()%100); 18 fflush(stdout); 19 //usleep(20000); 20 } 21 22 return 0; 23 }