1 #include <stdio.h> 2 3 int main()4 main() 5 { 6 while (1) { 7 sleep(1); // Set a breakpoint here 8 printf("I slept\n"); 9 } 10 return 0; 11 } 12