Basic concept of OOP in c++
Some Basic concept of OOP in c++ C++ What is OOP ? OOP stands for Object-Oriented Programming. Object Oriented Programming is a paradigm that provides many concepts such as inheritance, data binding, polymorphism etc. Object-oriented programming has several advantages over procedural programming: 1. OOP is faster and easier to execute. 2. OOP provides a clear structure for the programs. 3. OOP helps to keep the C++ code DRY "Do not Repeat Yourself", and makes the code easier to maintain, modify and debug. C++ What are Classes and Objects? Class When you define a class, you define a blueprint for an object. This doesn't actually define any data, but it does define what the class name means, that is, what an object of the class will consist of and what operations can be performed on such an object...