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