Multiple Choices
Answer (Choose 1 answer)
Given the following declarations:
int *pa;
int a[3] = {1, 2, 3};
Which of the following expressions are illegal?
1.pa = a;
23 2.3.a = pa;pa++;
A. 1 and 3 are illegal
B. 2 and 3 are illegal
C. 1 and 2 are illegal
D. 2 is illegal