If the system allocates 2 bytes for int type, 1 byte fo...
单项选择题If the system allocates 2 bytes for int type, 1 byte for char type and 8 bytes for double type, then if there are the following statements, the number of bytes in memory occupied by variable ss is ( ).
struct s
{ int m;
char c;
double d;
}ss;
A.8
B.1
C.11
D.2