Solution for Exercise 4-1

ex0401

#include <stdio.h>

int main()
{
   puts("Don't bother me now. I'm busy.");
   return(0);
}

Notes

* This program is basically another Hello, world program, although it uses the puts() function instead of printf().