204. Union

Question.2

A union has three members of different sizes:

union Payload {
    uint8_t byte_val;   // 1 byte
    uint32_t word_val;   // 4 bytes
    float   float_val;  // 4 bytes
};

printf("%zu", sizeof(Payload));

What is the output?

Need Help? Refer to the Quick Guide below

Select Answer