This C++ tutorial series will help you to get started learning C++ Programming Language from basics.
C++ is a general purpose, middle level programming language, with high and low level programming capabilities, and this is one of the most popular commercial programming languages.
Prerequisites
It is important to understand the concepts of C before learning C++, and the basic Knowledge of C Programming Language will help you to understand C++ Programming quickly.
C++ Example
A quick look at the example of C++ Program, and detailed description is given in the C++ Program Structure page.
/*
* File: main.cpp
* Author: Gautam
* Created on October 16, 2011, 4:09 PM
*/
#include <iostream>
int main()
{
std::cout<<"This is my first C++ Program.";
std::cout<<std::endl<<"and its very easy to learn";
}
Click on the Run button to see how it works.
The above example has been used to print text on the screen.
No comments:
Post a Comment