Question: Assume a structure is defined as below in C. What is the minimum size of this structure type? Assume char type occupies one byte, and
Assume a structure is defined as below in C. What is the minimum size of this structure type? Assume char type occupies one byte, and int type occupies four bytes.
struct student
{
char a[10];
int id;
};
How do you go about solving this?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
