[message_box title=”Program ” color=”red”]
/* Sample Program For Introduction of C*/
/* Written by Utpal Chaudhary*/
/* Student of LD College of Engineering, Ahmedabad, Gujarat.*/
#include<stdio.h> /*stdi0.h refers to standard I/O Header file containing standard input and output functions */
void main() /*main() is a special function used by C system to tell the computer where the progrwm start */
{
printf(“Hello Friends, My Name is Utpal Chaudhary”); /* use of printf function for printing captions and numerical results*/
/* Every statement in C should end with semicolon(;)*/
}
[/message_box]
[message_box title="output" color="red"] Hello Friends, My Name is Utpal Chaudhary [/message_box]