| UMBC | CMSC104 |
/* Filename: 6789prj0.c
Author: your_name_goes_here
Date written: the_date_you_create_the_file_goes_here
Description: This programs prints out the greeting "Hello, World!"
*/
#include <stdio.h>
int main( )
{
printf( "Hello, World!\n" );
return 0;
}
Name the source code file: 6789proj0.c
| UMBC CMSC104 | CSEE | CMSC104 | |