11. 

Can a structure can point to itself?

A. Yes
B. No

12. 

If a char is 1 byte wide, an integer is 2 bytes wide and a long integer is 4 bytes wide then will the following structure always occupy 7 bytes?

struct ex
{
    char ch;
    int i;
    long int a;
};

A. Yes
B. No