UMBC CMSC104

Project Due: 18 Feb

Requirements Specfication

Create a source code file named 6789prj0.c with the code below. The file name is the last four digits of your SSN and prj0.c. This project does not use the standard program header comment block.

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

Name the source code file: 6789prj0.c

If you have any problems using the UMBC compiler, go to the consultants in ECS-020 and they will help you. You can get help with compiler errors and warnings from me, the TAs, the Computer Science Help Center, and the Tutor Center.

Lecture 7 describes how to use the compiler on the UMBC Linux system.


UMBC CMSC104 CSEE | CMSC104 |