[求助]为什么sizeof输出的大小跟我定义的结构大小不相符?(已解决)
#include "stdio.h"
#include "conio.h"
struct haha
{
int gogo;
char gogogo;
};
main()
{
printf("%d %d %d",sizeof(struct haha),sizeof(int),sizeof(char));
getch();
}
输出结果是8 4 1
我结构大小是5,为什么输出8
我用dev cpp编译
[此贴子已经被作者于2007-3-7 22:18:32编辑过]