Project Hello World

by: burt rosenberg
at: university of miami
date: aug 2019
NAME
    hello  -- prints "hello, world!\n" to standard out and exits.
    
SYNOPSIS
    hello
	
DESCRIPION
    Prints "hello, world!" to standard out and exits.

HISTORY
    Introduced in csc421.181.
    For csc421.211, program name and string exactly agrees with the text,
    The C Programming Language.
	

Goals

The goals of this project are:

Specific steps

Discussion

The provided hello.c is the template. Please modify to satisfy the test case. The Makefile provided has the default target to build the binary. The test target redirects output to the helloworld.out file and then compares the captured output to the reference output give in helloworld.ref. Differences will be reported. If the match, the diff program is silent.

The clean target removes build and test products. Never commit products! Commit only sources (in this project — Makefile, helloworld.c and helloworld.ref). Points off for committing build products.

See the original program on page 6 of The C Programming Language, by Kernighan and Ritchie.

Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.

author: burton rosenberg
created: 21 aug 2017
update: 21 jan 2022