This C++ tutorial series will help you to get started learning C++ Programming Language from the 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.
C++ Example
A quick look at the example of the C++ Program and a detailed description are given on the C++ Program Structure page.
/*
* File: main.cpp
* Author: Gautam
* Created on April 28, 2018
*/
#include <iostream>
int main()
{
std::cout<<"This is my first C++ Program.";
std::cout<<std::endl<<"and its very easy to learn";
}
Program Output:
The above C++ example code prints the text on the screen.
Required Knowledge
It is essential 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.