Qmark: 1
Total Marks: 50
Vol: 8
Font: Microsoft Sans Serif
Size: 10
Time Left: 51:43
Multiple Choices
(Choose 1 answer)
Given the following declarations:
int *pa;
int a[3] = {1, 2, 3};
Which of the following expressions are
1.pa = a;
2.a = pa;
3.pa++;
A. 1 and 3 are illegal
B. 2 and 3 are illegal
C. 1 and 2 are illegal
D. 2 is illegal
Q: 48