/********************************************************
 * 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 <stdio.h>
main()
{
    /* Tell the world hello */
    (void) printf("Hello World\n");
    return (0);
}


syntax highlighted by Code2HTML, v. 0.9.1