标题:C语言结构体长度问题
取消只看楼主
TIMFannie
Rank: 1
等 级:新手上路
帖 子:89
专家分:0
注 册:2017-10-15
结帖率:84.21%
已结贴  问题点数:20 回复次数:0 
C语言结构体长度问题
#include<stdio.h>
#include<stdlib.h>

struct examp_1
{
    int a;
    char c[10];
};

struct examp_2
{
    int a;
    char b;
};

struct examp_3
{
    int a;
    char b;
    char c[];
};

main()
{
    printf("%d\n",sizeof(examp_1));
    printf("%d\n",sizeof(examp_2));
    printf("%d\n",sizeof(examp_3));
}

输出为
16
8
8

我觉得应该是14
            5
            5
为什么出现这情况
搜索更多相关主题的帖子: C语言 struct char printf sizeof 
2018-03-12 23:00



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




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

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