Posted on Leave a comment

C++ Programming

C++ is an object-oriented programming language. It is an extension to C programming.

C++ provides basic and advanced concepts of C.

C++ includes all topics of C such as first example, control statements, objects and classes, inheritance, constructor, destructor, this, static, polymorphism, abstraction, abstract class, interface, namespace, encapsulation, arrays, strings.

What is C++

What is C++

C++ is a general purpose, case-sensitive, free-form , platform independent, compiler based, syntax based, powerful & fast programming language that supports object-oriented, procedural and generic programming.

C++ is a middle-level language, with rich library as it encapsulates both high and low level language features.

Object-Oriented Programming (OOPs)

C++ supports the object-oriented programming, the four major pillar of object-oriented programming (OOPs) used in C++ are:

  1. Abstraction
  2. Encapsulation
  3. Inheritance
  4. Polymorphism

Basic Program

  1. #include <iostream>  
  2. using namespace std;  
  3. int main() {  
  4.    cout << “Hello C++ Programming”;  
  5.    return 0;  
  6. }  

For the Complete Curriculum please contact

Email : technoinfo52@gmail.com , WhatsApp : 9519663733

Leave a Reply

Your email address will not be published. Required fields are marked *