#include<iostream.h> #include<conio.h> #include\"this.h\" main( ) { clrscr(); forthis obj1; forthis obj2; obj1.set_data(3); cout<<\"\\n Information about obj1 : \"<<endl; obj1.show_data(); obj2.set_data(6); cout<<\"\\n Information about obj2 : \"<<endl; obj2.show_data(); getch(); return 0; }