Home » C Programming » Structures » Question
  1. What will be the output of the following C code?
    #include <stdio.h>
    struct Man
    {
    char *ch;
    struct Man *point;
    };
    void main()
    {
    struct Man m;
    printf("%d", sizeof(m));
    }
    1. 4
    2. 8
    3. 16
    4. Compilation Error
    5. None of these
Correct Option: D

16



Your comments will be displayed only after manual approval.