This tutorial will teach you all about C++ programming from very basic for beginner to advance.
C++ programming is a demanding language and widely used in game development and much other application.
What Is C++

Complete intro of CPP

What is C++??

Compelete intro of CPP
what is C++


C++ is a case-sensitive (differentiating between capital and lower case letters), general-purpose(having a range of function), object-oriented programming language.
Here C++ programming is a case-sensitive language means that in C++, rbatec, Rbatec, RbaTec, RBATEC, are 4 different variables. Computer command which specifies that each letter of a word or term must be typed exactly as required or shown as a capital letter or a common lower case letter
In case, if C++ programming is not a case-sensitive language, then all these four forms of code cracker was same and there will be no error to run this word.
C++ programming is an essential programming language in too many universities and colleges around the whole world because of its popularity and power. It is fourth top language according to IEEE.
You can make a lot of big-big projects only in C++ programming language easily after learning it, and many students all across the world are doing their final year project in it.

A Brief History Of C++

C++ programming language was developed at the AT&T Bell Laboratories by Bjarne Stroustrup in the year 1980. He found 'C' lacking for duplicate (computing) the technique of representing the real world by a computer program and decided to extend the language by adding some features from his favorite language named Simula 67 .Simula is the name of two simulation programming languages, Simula and Simula67, developed in the 1960s at the Norwegian Computing Center in Oslo, by Ole-Johan Dahl and Kristen Nygaard. Syntactically, it is a fairly faithful superset of ALGOL 60.
The Simula 67 language was one of the earliest object-oriented languages. Originally, Bjarne Stroustrup called it as "C with Classes".
Why C++ is so Popular?
The major reason behind the success and popularity of C++ is, it supports the object-oriented technology, the latest in the software development and the most near to the real world. Because it is the fastest Objective Orientated Programming (so-called “OOP”) language. That's the reason why the C++ is popular in Videogame and banking server, both of which need very fast speed and efficient resource usage.
C++ is an Object-Oriented Programming Language
C++ supports object-oriented programming, including the following four pillars of object-oriented development:
1.     Encapsulation
2.   Data Abstraction
3.   Inheritance
4.   Polymorphism

A Simple C++ Program

Here is a simple program in C++
#include<iostream>//libraries


#include<conio>
int main () //main function start
{
cout<<"wellcome to c++" ; //this will be print on output screen
getch();
return 0;
}

 What to Learn before C++? 

You don't have to learn any other programming languages or anything before learning C++ programming.
But having some basic knowledge of computer fundamentals such as text editors, IDE, and some basic knowledge of operating system makes you feel more enjoyable while learning C++ programming.





CPP wellcome program
wellcome to C++






Post a Comment

Previous Post Next Post