82. Structures-i

Question.2

Two developers define the same struct with different member ordering:

Version A:

struct { char a; int b; char c; } sA;

Version B:

struct { int b; char a; char c; } sB;

On a 32-bit platform, what are sizeof(sA) and sizeof(sB)?

Need Help? Refer to the Quick Guide below

Select Answer

Restart quiz!