gpt4 book ai didi

c - ch 中会存储什么 char ch = ‘Z’ ?

转载 作者:行者123 更新时间:2023-11-30 18:17:23 26 4
gpt4 key购买 nike

因为我很困惑其中会存储什么。它是 ascii 值还是“z”,因为有些网站说它存储 ascii,有些网站说它存储“z”。链接说答案是“z”:http://cprogrammingworld4u.blogspot.in/2011/07/chapter-1-getting-started.html

链接说答案是ascii:https://www.careercup.com/question?id=12511679

最佳答案

在 C 中,'z' 是一个 int 类型的常量,值为 122(假设您使用的是 ASCII 机器,你可能是)。你们的两个消息来源都一致 - 它们是同一件事。

举个例子,只需以您关心的所有不同方式打印即可。示例程序:

#include <stdio.h>

int main(void)
{
char ch = 'z';
char i = 122;
printf("%c %d\n", ch, ch);
printf("%c %d\n", i, i);
return 0;
}

运行它:

$ make example && ./example
z 122
z 122

关于c - ch 中会存储什么 char ch = ‘Z’ ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37559630/

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