help me write a c++ programe using class to read in a persons name address and age of two people and print out the older person.the program should print out the name ,adress and age of the elder person and also should print out the age difference.
Your assignment (which i assume this is) appears to be to create a simple class with members for name, address and age, and a method to print the address.
See http://www.cplusplus.com/doc/tutorial/classes.html for documentaion on classes in C++
Have a go at creating a program to create such a class, and post the code here if you get stuck.