Home / General Knowledge / Testing New :: Discussion

Discussion :: Testing New

  1. The declaration
    int (*p) [5];
    means

  2. A.

     p is one dimensional array of size 5, of pointers to integers.

    B.

     p is a pointer to a 5 elements integer array.

    C.

     The same as int *p[

    D.

     None of these.

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Explanation Not Provided


Be The First To Comment