If I say car as an example of class. Then what should be the object then?
I know their are many other simpler examples but it would be helpful to know object for this particular example.
class car{
char name[100];
..
}
Object_type ob = new Object_type
What should be the object here?