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. a[1] = 3
B. a[0] = 2
C. a[1] = 2
D. a[0] = 3
E. Compilation error
Answer» C. a[1] = 2


Discussion

No Comment Found