

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following statements are true after execution of the program.void main(){int a[10], i, *p;a[0] = 1;a[1] = 2;p = a;(*p)++;} |
A. | [1] = 3 |
B. | [0] = 2 |
C. | [1] = 2 |
D. | [0] = 3 |
E. | ompilation error |
Answer» C. [1] = 2 | |