CS 112
hellow.c


{beowulf} % more hellow.c

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

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

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