Home » C Programming » Operators » Question
  1. What will be the size of the following C structure?
    #include <stdio.h>
    struct test
    {
    int array[10];
    char ch;
    };
    1. 41
    2. 44
    3. 5
    4. 11
    5. None of these
Correct Option: B

44



Your comments will be displayed only after manual approval.