Home » C Programming » Arrays » Question
  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
    1. num1 is II, num2 is I
    2. num1 is I, num2 is II
    3. num1 is II, num2 is II
    4. num1 is I, num2 is I
    5. None of these
Correct Option: D

num1 is I, num2 is I



Your comments will be displayed only after manual approval.