InterviewSolution
Saved Bookmarks
| 1. |
How is an array of structure declared? Give an example. |
|
Answer» The array of structure is a collection of array elements in which each element is a structure in the array. For example, struct student { int regno; char name [50]; char class [6]; } s[100]; |
|