Pages
Home
About us
C++ material
Graphics Games
An overview to C++
Professional Corner
Request a Program
Saturday, January 29, 2011
A simple Program in c++ (c plus plus)
Here is a simple program in c++ to check whether your compiler is working fine or not
#include "iostream.h"
#include "conio.h"
void main()
{
clrscr();
cout<<"Welcome to my first program";
getch();
}
Newer Post
Home