Home » C Programming » Structures » Question
  1. How many bytes in memory taken by the following C structure?
    #include 
    struct Example
    {
    int i;
    char a;
    };
    1. Multiple of word size
    2. Depends on the platform
    3. integer size+character size
    4. Multiple of integer size
    5. None of these
Correct Option: D

Multiple of integer size



Your comments will be displayed only after manual approval.