Basic Of C++ , Classes and Objects
1. A class defines a new data type that encapsulates data members and member functions. Classes allow for creating user-defined data types.
2. A class declaration specifies the data members and member functions of the class, while class definitions provide the implementation of member functions.
3. Objects are variables of a class type that allocate memory to store the class's data members. Member functions can access and manipulate the data members of an object.