/***************************************************************************** * program.c * Matthew Chartier * CS 50/CSCI E-52 * Fall 2010 * * The classic and admittedly dull "Hello, world!" demo. *****************************************************************************/ // header file inclusion #include #include // main function of our program int main(void) { printf("Hello, world!\n"); }