User Tools

Site Tools


user:psechris:portfolio:cprogproject2

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.

user/psechris/portfolio/cprogproject2.txt · Last modified: 2013/02/22 15:59 by psechris