Program # 1: Simple Program
Program to print message on screen. ( Level - Low )
#include <iostream.h> //Preprocessor or header file for output statement #include <conio.h> //Header file for clear screen function
void main (void) //Main function of the program
{
clrscr(); //Built in function which is used to screen clear
cout<<"Welcome to the world of C++"; //Output statement
getch(); //Built in function
}
0 Comments