UMBC CMSC104

Project Due: 15 Sep

Requirements Specfication

Create a source code file named proj0.c with the following code:

/* 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;

}
  
After you have this in the file, compile it and make sure that it runs correctly. Then submit the file via Blackboard. Make sure you register the correct section in Blackboard!

Name the source code file: 6789proj0.c


UMBC CMSC104 CSEE | CMSC104 |