72.
Which among the following is never possible in C when members are different in a structure and union?
//Let P be a structure
//Let Q be a union

75.
Which of the following cannot be used inside sizeof?

78.
What will be the output of the following C code?
#include <stdio.h>
printf("%d", sizeof(strlen("HELLOWORLD")));