Home » C Programming » Structures » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    struct City
    {
    };
    void main()
    {
    struct City c[2];
    printf("%d", sizeof(c));
    }
    1. 0
    2. 2
    3. 4
    4. 8
    5. None of these
Correct Option: A

0



Your comments will be displayed only after manual approval.