UMBC CMSC104

Project Due: 5 March

Requirements Specfication

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

/* 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!"
 */

#include 

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.

Name the source code file: proj0.c


UMBC CMSC104 CSEE | CMSC104 |