1.

Which of the following correctly declares a pointer to an array of intergers in C?

A. int * P [20]
B. int * P
C. int (* P) [20]
D. int * (P [20])
Answer» D. int * (P [20])


Discussion

No Comment Found