Guess the output of this program 
#include <stdio.h>
    union Sook
    {
        int nu;
        char m;
    };
    int main()
    {
        union Sook s;
        printf("%d", sizeof(s));
        return 0;
    }

Posted on by