Programming and posix getting started

5
A Simple Program - 1
Create the source file:
> cat >hw.c Enter/Return to start new line
#include <stdio.h> /* printf() */
main()
{
printf("hello world\n");
}
:eod or CTRL-Y to end
or
> vi hw.c