标题:新手问问题....
取消只看楼主
wubihai7
Rank: 2
等 级:论坛游民
帖 子:31
专家分:13
注 册:2010-3-4
结帖率:66.67%
已结贴  问题点数:8 回复次数:0 
新手问问题....
1、
#include"stdio.h"
   main()
   {  int i;
    struct student
    {
        char name[10];
         int num;
         int age;
        char sex[2];
         int grade;
        char specialty[16];
    }stud;
    printf("%d",sizeof(stud));
}
输出结果:44个字节;int 类型在vc占四个字节,应该输出40才对。
2、
#include"stdio.h"
main()
{  int i;
    struct student
    {
        char name[10];
         short num;
         short age;
        char sex[2];
         short grade;
        char specialty[16];
    }stud;
    printf("%d",sizeof(stud));
}
输出结果:34个字节;short 类型在vc占2个字节,输出34,没意见。


搜索更多相关主题的帖子: age specialty include color 
2011-01-31 18:09



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-331782-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.349102 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved