Table of Contents

Project: Hello World!

A project for CSCS1320 by Paul Sechrist during the Spring 2013.

Objectives

Create the first program that most programmers create in C, Hello World!

Code

1
#include<stdio.h>
int main()
{
        printf("Hello, World!\n");
        return(0);
}

Execution

lab46:~/src$ ./hello
Hello, World!
lab46:~/src$ 

Reflection

Good lesson to learn basic outline of code, how to write it, and how to compile and execute in bash.