/*********************************************************** ** File: message.c ** Author: Joe Student ** Date: 9/15/06 ** Section: 0105 ** E-mail: jstudent22@umbc.edu ** ** This program prints a cool message to the user. ************************************************************/ #include int main() { printf(“Hello, World \n”) ; return 0 ; }