#include<stdio.h> /*preprocessor directive*/
void main()
{ /*opening of main function body*/
printf("/n This is C program"); /*output statement*/
} /*closing of main function*/
0 Comments