Introduction to C++
Introduction to C++ 1. C++ is a general purpose,case-sensitive, free-form programming language that0 supports object-oriented,procedural and generic programming. 2. C++ is a middle-level language,as it encapsulates both high and low level language features. 3. C++ was developed by Bjarne Stroustrup of AT&T Bell Laboratories in the early 1980's, and is based on the C language. The "++" is a syntactic construct used in C (to increment a variable), and C++ is intended as an incremental improvement of C. Most of C is a subset of C++, so that most C programs can be compiled (i.e. converted into a series of low-level instructions that the computer can execute directly) using a C++ compiler. C++ is a superset of C, and that virtually any legal C program is a legal C++ program C++ is an Object-Oriented Programming (OOP) Language. It was developed by “Bjarne Stroustrup” in 1980. Bjarne Stroustrup wants to develop a language that support object-oriented programming features wi...