Home / C Programming / Arrays :: Discussion

Discussion :: Arrays

  1. What does the following declaration mean?
    int (*ptr)[10];

  2. A.

     ptr is array of pointers to 10 integers

    B.

     ptr is a pointer to an array of 10 integers

    C.

     ptr is an array of 10 integers

    D.

     ptr is an pointer to array

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Explanation Not Provided


Be The First To Comment