Teaching UGC NET Mock Test Series 2025 (Paper 1 & 2) Programming and Data Structure Programming in C Array
Which one of the following statements is true after execution of the program
int a[10], I, *p;
a[0] = 1;
a[1] = 2;
p = a;
(*p)++;
1
a[0] = 2
2
a[1] = 3
3
a[1] = 2
4
all