//Created by Dr. Ramsey on 2/15/2017 //Used to create a program that "runs forever" //it prints out a status message once a "second" //assuming usleep has microsecond precision //for use and adoption in your fork programs //to test trailing & and background processes #include #include int main() { int i = 0; while(true) { printf("\n[%3d] Sleeper\n",i); usleep(1000000); i++; } }