CS 112
hellow.c


{grendel} % more hellow.c

/*File: hellow.c*/
#include < stdio.h >

main()
{
printf("Hello world!\n");
}

{grendel} % gcc hellow.c -o hellow
{grendel} % hellow
Hello world!
{grendel} %exit
exit