C ++ Tutorial
C ++ is a mid-level language, it is by Bjarne Stroustrup in 1979 at Bell Labs began to design development. C ++ to further expand and improve the C language, an object-oriented programming language. C ++ can run on multiple platforms, such as the various versions of Windows, MAC operating system and the UNIX.
This tutorial plain language to explain the C ++ programming language.
Who should take this tutorial?
This tutorial is designed for beginners to create, to help them understand the basis of relevant and C ++ programming language to advanced concepts.
Before reading this tutorial, you need to know:
Before you begin the exercises in this tutorial gives various examples, you need to computer programs and computer programming languages have a basic understanding.
Compile / execute C ++ program
Examples
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World";
return 0;
}
using namespace std;
int main ()
{
cout << "Hello World";
return 0;
}
Running instance »