1.

Consider the following declaration in C:char a[];char *p;Which of the following statement is not a valid statement?

A. p=a;
B. p=a+2;
C. a=p;
D. p=&a[2];
Answer» D. p=&a[2];


Discussion

No Comment Found