1.

Comment on the following 2 arrays with respect to I and II.
 int *num1[10];
int *(num2[10]);
I. Array of pointers
II. Pointer to an array

A. num1 is II, num2 is I
B. num1 is I, num2 is II
C. num1 is II, num2 is II
D. num1 is I, num2 is I
E. None of these
Answer» E. None of these


Discussion

No Comment Found