#include #include class Emp { public: char name[10]; int age; int salary; public: void init(); void display(); }; void main() { clrscr(); Emp obj; obj.init(); obj.display(); getch(); } void Emp::init() {Emp obj; //for(int i=1;i<=5;i++) //{ cout<<"\n ENTER THE NAME ==> \n"; cin>>obj.name; cout<<"\n ENTER THE AGE ==> \n"; cin>>obj.age; cout<<"\n ENTER THE SALARY ==> \n"; cin>>obj.salary; } //end of init function void Emp::display() { //for(int j=1;j<=5;j++) Emp obj; cout<<"\n EMPLOYEE'S NAME \n"<