Given the following union type definition in a 32bit computer:
union person {
char gender;
int age;
char name[16];
} x;

What is the total number of bytes used by the variable x?
a. 16
b. 20
c. 24
d. 30