Saved Bookmarks
| 1. |
Identify the errors in the following structure definition and write the reason for each:struct{int roll, age;float fee= 1000:}; |
|
Answer» Errors (1) No name for the structure. The correct structure is as follows struct student { short roll.age:; float fee=1000; } |
|