Home / C Programming / Arrays :: Discussion

Discussion :: Arrays

  1. Consider the following type definition.

    typedef char x[10];

    x myArray[5];

    What will sizeof(myArray) be ? (Assume one character occupies 1 byte)

  2. A.

     15

    B.

     10

    C.

     50

    D.

     30

    E.

     None of these

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Explanation Not Provided


Be The First To Comment