| Q.100 | What is the base address and where it stored in a string? | |
| Ans | 1. Address of the zeroth element in an integer array, stored in the variable pointer (ptr) | |
| 2. Address off the last element in an integer array, stored in the character array | ||
| 3. Address of the second element in an integer array, stored in the variable ptr | ||
| 4. Address of the first element in an integer array, stored in the variable pointer (ptr) |
Correct Ans Provided: 1