#include<iostream.h> //////This is the Header File
void main(){ //////Main body start with curly braces "{"
clrscr(); ////// This function clear the screen
cout<<"My First Program."; /////The message is shown on the screen
getch(); /////Hold the program on the screen
} /////Main Body ends with curly braces "}"
Output:
My First Program.
No comments:
Post a Comment