81.
What will be the output of the following C code?
#include <stdio.h>
(sizeof double = 8, float = 4, void = 1)
#define PI 3.14
int main()
{
    printf("%d", sizeof(PI));
}

82.
What will be the output of the following C code?
#include <stdio.h>
main()
{
    int a = 1;
    printf("size of a is %d, ", sizeof(++a));
    printf("value of a is %d", a);
};

85.
Which among the following is never possible in C when members in a structure are the same as that in a union?
//Let P be a structure
//Let Q be a union