Wednesday, 25 May 2016

C++ : MY FIRST PROGRAM (Basics)

#include<iostream.h>

#include<conio.h>


void main()

{

clrscr();

cout<<"Hello There! This is my first Program";

getch();


}




This is the most basic program which will print a simple output that you entered through the text within the program...

No comments:

Post a Comment