C Programming
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[0] = 3
a[0] = 2
a[1] = 3
a[1] = 2
Compilation error

ANSWER DOWNLOAD EXAMIANS APP