Program
Syntax
1
/*
First Program
*/
<comment>
#include <stdio.h>
<directive>
main ()
<function name>
{
printf ("I like Tacos\n");
<statement>
<body>
}
Commands
%emacs first.c
%cc first.c
%a.out
I like Tacos
%