Introduction to C++
Introduction to C++: C++ is a middle-level programming language developed by Bjarne Stroustrup starting in 1979 at Bell Labs. The name is “C++" 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 using a C++ compiler. C++ is object oriented and updated version of C. Earlier C++ was known as C with classes. In C++, the major change was the addition of classes and a mechanism for inheriting class objects into other classes. C++ expressions are the same as C expressions. All C operators are valid in C++. C++ runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX. Difference between C & C++ : C Language C++ Language 1. C is Procedural Language. 1. C++ is non Procedural i.e Object oriented Language. 2. No virtual Functions are present i...