gpt4 book ai didi

c - C 中的单引号与无引号

转载 作者:行者123 更新时间:2023-11-30 20:45:56 24 4
gpt4 key购买 nike

在以下代码中:

#include <stdio.h>

/* count digits, white space, others */
main()
{
int c, i, nwhite, nother;
int ndigit[10];

nwhite = nother = 0;
for (i = 0; i < 10; ++i)
ndigit[i] = 0;

while ((c = getchar()) != EOF)
if (c >= '0' && c <= '9')
++ndigit[c - '0'];
else if (c == ' ' || c == '\n' || c == '\t')
++nwhite;
else
++nother;

printf("digits =");
for (i = 0; i < 10; ++i)
printf(" %d", ndigit[i]);
printf(", white space = %d, other = %d\n",
nwhite, nother);
}

我不明白为什么要替换这一行:

if (c >= '0' && c <= '9')

用这一行:

if (c >= 0 && c <= 9)

给出不同的结果?例如,当使用后一个选项编写代码并且用户按下 9 按钮时,程序将其视为“其他”,而不是数字。

最佳答案

表达式'0'是一个字 rune 字。它的确切值取决于您的系统上使用的编码,但在最常见的编码方案(ASCII)中,我们可以检查例如this table并看到其值为十进制 48

另一个表达式 0 是一个整数文字,其值为 0

例如做0 == '0'0 == 48 相同,这绝对是不正确的。

关于c - C 中的单引号与无引号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33736397/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com