A First C Program
/* Print a Message */
#include <stdio.h>
main()
{
printf("This is a test!\n");
}
The
program
is compiled and run as
cc pg32.c (return)
a.out (return)
This is a test!
Next slide
Back to first slide
View graphic version