Given the ANSI C definition below, which of the following definitions are valid and will compile successfully ?
int a[5];
int &pa;
A. pa = a;
B. pa = &a;
C. pa = &a[0];
D. pa = *a;
E. a++;
Answer is A, B, C
int a[5];
int &pa;
A. pa = a;
B. pa = &a;
C. pa = &a[0];
D. pa = *a;
E. a++;
Answer is A, B, C