Program to print a message

 #include<stdio.h>     /*preprocessor directive*/

void main()

{ /*opening of main function body*/

printf("/n This is C program");  /*output statement*/

} /*closing of main function*/

Post a Comment

0 Comments