Friday, 7 June 2013

Learn C++ Step by Step for beginners < PART 1 >

Well this is the first series of tutorial I am going to make and I hope this will help our readers


Before we star you will need Code::Blocks a free C++ compiler

You can get it here - Click Here

After downloading you are ready to start this easy but successful tutorial for beginners...


1) When you start the downloaded application  go to File -> New -> Project


2) Then you will see the above image 

3) Go to console application 

4) Select C++ , then name the project whatever you want .

5) In the extreme left , Below the name of the program , you will see "Source" . Click on it

6)Then you will see -> main.cpp . Click on it

7) Then you will see the default program - " Hello World !" 

#include <iostream>

using namespace std;

int main()
{
    cout << "Hello world!" << endl;
    return 0;
}

8) If you have followed the steps , you will see the above code

9) Please do not panic , I will explain the code in my latter posts .


Thank you ............

Please comment .................











No comments:

Post a Comment