So after watching this video I learned that Car is nothing but a class (blueprint of a object). The variable c which we have created like :
Car c;
So here c is an object. And price, model_no and name are its data members of this object.
Conclusion according to me :
Classes contains objects and objects contains its data members