What is the smallest size a variable of the type child_t may occupy in memory?
typedef struct{
unsigned int age : 4;
unsigned char gender : 1;
unsigned int size : 2;
}child_t;
What is the smallest size a variable of the type child_t may occupy in memory?
typedef struct{
unsigned int age : 4;
unsigned char gender : 1;
unsigned int size : 2;
}child_t;