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
//Let P be a structure
//Let Q be a union73. What will be the size of the following C structure?
#include <stdio.h>
struct temp
{
int a[10];
char p;
};
#include <stdio.h>
struct temp
{
int a[10];
char p;
};74. What is the sizeof(void) in a 32-bit C?
75. Which of the following cannot be used inside sizeof?
76. Which data type is suitable for storing a number like?
10.0000000001
10.000000000177. In a 32-bit compiler, which 2 types have the same size?
78. What will be the output of the following C code?
#include <stdio.h>
printf("%d", sizeof(strlen("HELLOWORLD")));
#include <stdio.h>
printf("%d", sizeof(strlen("HELLOWORLD")));79. What will be the output of the following C code?
#include <stdio.h>
printf("%.0f", 2.89);
#include <stdio.h>
printf("%.0f", 2.89);