top of page
Search
Writer's pictureHarshit Sharma

Introduction to C++

When we talk about any programming language there is always the needs to learn the approach on which it is based on and when we talk about C++ it is based upon OOPS(Object Oriented Programming Structure).

OOPS concept enable us to program in C++ with various facilities such as helps u code and interact with the user .Now the concepts of OOPS are:

  1. Data Abstraction:It hides the essential features without including background explanation.

  2. Encapsulation:The wrapping up of data members and member function into a single unit.

  3. Modularity: This property enables to data to be stored in the form of some couple of modules which we often call as functions.

  4. Inheritance:- It is the capability of one class to inherit the data members of other class

  5. Polymorphism: Polymorphism is a ability of a message to display more then one meaning.


0 views0 comments

Recent Posts

See All

Comments


Post: Blog2_Post
bottom of page