UMBC CMSC104

Project Due: 22 Sept

Requirements Specfication

Note: You must create a file using your ID instead of jdoe2! Also notice that this project does not have the required comments. In the future you must have the required comments.

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

/* Filename:      jdoe2p0.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( void )
{

    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: jdoe2p0.c


UMBC CMSC104 CSEE | CMSC104 |