Posts

Showing posts from January, 2018

Beginning with C++

What is C++ C++ is an object oriented programming language. It was developed by Bjarne Stroustrup at AT & T Bell Laboratories. C++ is a superset of C . The most important facility that C++ adds on to C are classes, inheritance, function overloading, and the operator overloading. These features enables creating of abstract data types, inherit properties from existing data types  and support polymorphism, thereby making C++ a truly Object Oriented Language. The Object Oriented feature in C++ allow programmers to build large programs with clarity extensibility and ease of maintenance, incorporating the spirit of efficiency of C. The addition of new features has transformed C from a language that currently facilitates top-down , structured design, to one that provides bottom-up, object-oriented design.   Applications of C++ C++ is a versatile language for handling very large programs. It is suitable for virtually any programming task including development of e...