InterviewSolution
Saved Bookmarks
| 1. |
Write A C++ Program To Create An Object Of A Class Called Employee Containing The Employee Code Name Designation Basic Salary Hra Da Gross Salary As Data 10 Such Objects "members Process "? |
|
Answer»
#include { int person; float salary; }p; cout<<"enter the person NAME"; cin>>p.person; cout<<"enter the salary"; cin>>p.salary; } void main() { person; GETCH(); } #include #include class person { int person; float salary; }p; cout<<"enter the person name"; cin>>p.person; cout<<"enter the salary"; cin>>p.salary; } void main() { person; getch(); } |
|