有编程经验的人进来看下这个问题?
现在有下面的code
#include <stdio.h>
typedef struct
{
int a;
char b;
}DEFSTT;
void main(void)
{
DEFSTT f={12,'y'};
printf("%d\n",sizeof(f));
}
有人知道为什么结果不是5,而是8呢?
结构体的长度如何取呢??
现在有下面的code
#include <stdio.h>
typedef struct
{
int a;
char b;
}DEFSTT;
void main(void)
{
DEFSTT f={12,'y'};
printf("%d\n",sizeof(f));
}
有人知道为什么结果不是5,而是8呢?
结构体的长度如何取呢??
#include <stdio.h>
typedef struct
{ char c;
int a;
short b;
}DEFSTT;
typedef struct
{
int x;
char y;
short z;
}sss;
void main(void)
{
DEFSTT f;
sss h;
printf("%d\n",sizeof(f));
printf("%d\n",sizeof(h));
}
7楼的你编译一下这个,结果不一样哦~