Saved Bookmarks
| 1. |
Correct the following structure definition to represent an employee with employee code, employee name, and salary. |
|
Answer» Employee struct { ecode int; char name[25]; salary double; } |
|