有关 sizeof 运算符的 c 编程查询 请在 windows 和 linux 中指定输出及其原因

发布于 2024-09-25 11:57:46 字数 99 浏览 3 评论 0原文

void main()
{
    char c='0';
    printf("%d %d",sizeof(c),sizeof('0'));
}
void main()
{
    char c='0';
    printf("%d %d",sizeof(c),sizeof('0'));
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

被翻牌 2024-10-02 11:57:46

在 C 中,char Literal 的大小等于 sizeof(int)。因此,sizeof('0') 在您的实现中给出了 sizeof(int) 的值。

另外,按照标准的规定,sizeof(char) 始终为 1。

In C, size of char literal is equal to sizeof(int). So sizeof('0') gives the value of sizeof(int) on your implementation.

Also sizeof(char) is always 1 as mandated by the Standard.

潜移默化 2024-10-02 11:57:46

输出将为1 4'0' 文字的类型是 int,在大多数系统上其大小为 4。 C 标准要求 sizeof(char)1

如果您得到的值小于 4,请进入时间机器,拨入 +25 年

The output will be 1 4. The type of the '0' literal is int, which on most systems has a size of 4. The C standard requires that sizeof(char) is 1.

If you get anything less than 4, get in your time machine, and dial in +25 years.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文