It is a instance of class. It is a basic runtime entity of an object oriented system.
C++ have two types of object
1. Static object
Person p;
2. Dynamic object
Person p=new Person;