Posts

Showing posts with the label Identifiers

Getting Starting With C++

Image
OVERVIEW  ABOUT C++ ○ C++ is a programming language ○ C++ is a middle-level programming language ○ Developed by Bjarne Stroustrup starting in 1979 at Bell Labs ○ C and C++ became a widely used programming language ○ C++ fully supports object-oriented programming (OOP's) . ○ OOP's is a model of programming language or It is a Concept. FEATURE OF C++ ○ C++ is Easy to learn and Understand. ○ C++ is usually considered a "multi-paradigm" language. ○ It produces more efficient programs. ○ It can also handle low-level activities as well as high level activities ○ It can be compiled on a variety of computer platforms. ○ C++ is an object oriented programming language therefore it supports: 1. Polymorphism (one name and many forms) 2. Encapsulation (wrapping of a data & function in single unit) 3. Data Abstraction ( hiding of data and showing important features) 4. Inheritance (deriving data from one class to another) 5. Data Banding (com...