UMBC | CMSC104 |
/* 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; }
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 | |