InterviewSolution
Saved Bookmarks
| 1. |
Write a C++ program to create a structure called employee with name, employee id, name, age designation and salary as data members. Accept employee details and display it. SAMPLE INPUT & OUTPUT:Enter name:RajarajanEnter ID:001Enter age:24Enter designation:ManagerEnter Salary:20000Employee DetailsName of the Employee : Rajarajan ID of the Employee : 1 Age of the Employee : 24 Designation of the Employee : Manager Salary of the Employee : 20000.00 |
|
Answer» Explanation:Hey, I am writing a C++ program for your question. Hope it helps you.Program is as under:-#include |
|