#include"iostream.h"
int main()
{
struct date
{
long *a;
long *fd;
struct date *next;
double b;
}abc;
cout << sizeof(abc) << endl;
}
// 得到结果为:24
#include"iostream.h"
int main()
{
struct date
{
long *a;
long *fd;
struct date *next;
double b;
char c;
}abc;
cout << sizeof(abc) << endl;
}
// 得到结果为 32
www说
qq_花开花谢_0
萧十郎
跃然一笑
随时随地看视频慕课网APP
相关分类