UMBC | CMSC104 |
/* Filename: proj0.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!" */ #includeint main( ) { printf( "Hello, World!\n" ); return 0; }
Name the source code file: proj0.c
UMBC CMSC104 | CSEE | CMSC104 | |