MCQOPTIONS
Saved Bookmarks
| 1. |
The correct syntax to access the member of the ith structure in the array of structures is?Assuming: struct temp { int n; }sct[30]; |
| A. | sct[j].n; |
| B. | sct.n[j]; |
| C. | sct.[j].n; |
| D. | sct.n.[j]; |
| E. | None of these |
| Answer» B. sct.n[j]; | |