History of C++ And Their Explanation
History Of C++
History of C++ language is interesting to know. Here we are going to discuss brief history of C++ language.
C++ programming language was developed in 1980 by Bjarne Stroustrup at bell laboratories of AT&T (American Telephone & Telegraph), located in U.S.A.
Bjarne Stroustrup is known as the founder of C++ language.

It was develop for adding a feature of OOP (Object Oriented Programming) in C without significantly changing the C component.
C++ programming is "relative" (called a superset) of C, it means any valid C program is also a valid C++ program.
Let's see the programming languages that were developed before C++ language.
| Language | Year | Developed By |
|---|---|---|
| Algol | 1960 | International Group |
| BCPL | 1967 | Martin Richard |
| B | 1970 | Ken Thompson |
| Traditional C | 1972 | Dennis Ritchie |
| K & R C | 1978 | Kernighan & Dennis Ritchie |
| C++ | 1980 | Bjarne Stroustrup |
C++ FeaturesC++ is object oriented programming language. It provides a lot of features that are given below.![]()
1) Simple2) Machine Independent or PortableUnlike assembly language, c programs can be executed in many machines with little bit or no change. But it is not platform-independent.3) Mid-level programming languageC++ is also used to do low level programming. It is used to develop system applications such as kernel, driver etc. It also supports the feature of high level language. That is why it is known as mid-level language.4) Structured programming language5) Rich LibraryC++ provides a lot of inbuilt functions that makes the development fast.6) Memory ManagementIt supports the feature of dynamic memory allocation. In C++ language, we can free the allocated memory at any time by calling the free() function.7) SpeedThe compilation and execution time of C++ language is fast.8) PointerC++ provides the feature of pointers. We can directly interact with the memory by using the pointers. We can use pointers for memory, structures, functions, array etc.9) RecursionIn C++, we can call the function within the function. It provides code reusability for every function.10) ExtensibleC++ language is extensible because it can easily adopt new features.11) Object Oriented12) Compiler basedC++ is a compiler based programming language, it means without compilation no C++ program can be executed. First we need to compile our program using compiler. |

👌👌👍👍
ReplyDeleteNice
ReplyDelete