/******************************************************** * hello -- program to print out "Hello World". * * Not an especially earth-shattering program. * * * * Author: Steve Oualline * * * * Purpose: Demonstration of a simple program * * * * Usage: * * Run the program and the message appears * ********************************************************/ #include main() { /* Tell the world hello */ (void) printf("Hello World\n"); return (0); }