Basic Programming

Source Code from Notes


Example


/* 
   Program written October 1997
   by jmb
*/
#include <stdio.h>

main()
{
        printf("Hello World!\n");
        /* \en causes new line */
}


Back to Main Page for Lecture 1