1 2 3 4 5 6 7 8 9 10 11 12 13 14
int main(int argc, char **argv) { signed int i=0; while(1) { i++; printf("task 1 : %i \n",i); } return 0; }