Class & Object in C++
Class: A class is a user defined data type which contains the data members and member function. A class forms the basis for object oriented programming. It describes the shape and nature of the object . Any concept that we want to implement in oop’s must be encapsulated in class. The internal data of the … Read more