/******************************************************************
 *
 * Purpose: Show the basic structure of a C program
 * Author:  M J Leslie
 * Date:    03-Feb-94
 *
 ******************************************************************/

#include <stdio.h>

main()
{
    puts ("your first C program");
}
