MCQOPTIONS
Saved Bookmarks
| 1. |
Consider a C variable declaration int *i[10], j[10][10]; Which one of the following expression if used as left hand sides of assignment statements will not give compile time? |
| A. | i[5] |
| B. | i[1][2] |
| C. | j[2][3] |
| D. | j[6] |
| Answer» D. j[6] | |