I'v just stated working on derived classes
first i created the person in my program and then the derived class , " student " and i now i don't know how to create objects which belongs to the student class
Instantiating a derived class is no different that instantiating an object of any other class
Student Fred ( /* arguments to Student constructor */ ); // Create a Student instance
PLEASE USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post. http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.