C++ language tutorial for beginner
Before i start the C++ tutorial for the beginner, one must have to know some technical terms.
Program:
Its a set of instruction that perform a specific task when executed by a computer.
Programming:
It is a process of writing instruction for computer to perform a specific task.
Programmer:
A programmer is a person who write instruction for computer in a specific programming language.
Now, look at what is C++?
C++ (pronounce as C plus plus) is a general purpose object-oriented programming language (OOP), developed by Bjarne Stroustrup, and is an extension of C language.Let's look at Brief history of C++ language:-
The mastermind behind the inception and development of C++ programming language is Bjrane Stroustrup. He developed C++ at AT&T Bell Laboratory. Let's start with a brief history of C as C++ is called the successor of C programming.C programming language was first introduced by Denis Ritchie at AT&T's Bell Laboratories in USA in 1972 and was implemented for the first time in DECPDP-11 computer. Denis Ritchie used the concepts of BCPL and B language to deveplod C and added data typing and some other powerful features.
The inception of C++ programing language began in 1979 when Bjarne Stroustrup was working in his Ph.D. thesis. During that period Struoutrup used to work with Simula (regarded as the first language to support OOP paradigm).
In 1983 , it was named C++ and it include some add-on featuressuch as classes, inheritance, in-lining, default function arguments, polymorphism, encapsulation and strong type checking.
Comments
Post a Comment