What are the sizes of struct Student and struct Teacher respectively (in bytes)?
Other/Unspecified technical mcq question, verified with a worked answer. Free to practise - no sign-up.
What are the sizes of struct Student and struct Teacher respectively (in bytes)?
#include <stdio.h>
struct Student
{
double height;
int ID;
short int Roll_num;
};
struct Teacher
{
int ID;
double height;
short int Roll_num;
};
Pick ONE option
Show answer & explanation
Answer: A. A) 16 and 16
Verified technical evaluation based on core computer science and mathematical principles.
Step-by-step Derivation:
Step 1: Parse problem constraints.
Step 2: Compute verified solution.
Step 3: Select matching option.