结构体问题
#include <stdio.h>#include <conio.h>
struct a
{
char c;
float f;
short s;
};
struct b
{
char c;
double d;
struct a e;
}
void main()
{
struct b m;
printf("%d",sizeof(m));
}
为什么是答案:32呢?求解
2011-11-03 19:05
2011-11-17 10:43