Hi !
Here you will make your first C++ program. I will tell you what to do step by step for makeing your first program.
In this program i mean something simple like
"Hello World" or
"That's my first program"
First of all you have to download Turbo C++ IDE . It is attached so you have to wait to be approved.
Instruction of Install:
You have to download the attachments and extract the files.
After that go to C++ folder and start INSTALL aplication.
The program will install in TC folder.
Go to TC , BIN folder and start TC.exe
Now you will start to learn a programming language
Write down those:
Code:
#include <iostream.h>
#include <conio.h>
void main()
{
clrscr();
cout << "That is MPGH";
getch();
}
After that I'll explain you what means everything.
#include <iostream.h>
That is using for
cout.
#include <conio.h>
That is using for
clrscr(); and
getch();
void main();
That is using to start main functions.
clrscr();
That is using to clear the screen.
cout<<"";
That is using to write something in the program.
getch ();
That is using for going out of program.
How to run the program?
Simply pressing Ctrl+F9 , Run Option!
Virus scan added by Liz
Virus Total
That's all for today , I will come back everyday till you will learn C++ .
Tell me if you have problem and don't forget to press thanx.