What is a Class and Object in C++?
Can we say that a Class is an Object?
Here is an anology.
we have a classification called vehicles. Each vehicle will have some properties like :
Car, bike, truck, are some instances of vehicles. Each may have different set of properties.
Here vehicles is a class and all the properties are it's members and car, bike, truck are objects of the class vehicles.