sizeof(c) 和 size('a') 给出不同的结果。 (c是字符变量)

发布于 2024-12-23 12:09:33 字数 727 浏览 0 评论 0原文

可能的重复:
为什么 C 字符文字是整数而不是字符?
为什么 C 语言中 sizeof('a') 是 4?

#include<stdio.h>
int main()
{
  char ch;
  fflush(stdin);
  ch=getchar();
  printf("ch= %d a=%d char=%d", sizeof(ch),sizeof('a'),sizeof(char));
}

我输入 ' a'(不带引号)作为输入,我在 gcc 版本 4.5.1 中得到的输出是:

ch= 1 a=4 char=1

我的问题是:

如果sizeof(c)1 ,那么 sizeof('a') 怎么会是 4 呢?

Possible Duplicate:
Why are C character literals ints instead of chars?
why sizeof('a') is 4 in C?

#include<stdio.h>
int main()
{
  char ch;
  fflush(stdin);
  ch=getchar();
  printf("ch= %d a=%d char=%d", sizeof(ch),sizeof('a'),sizeof(char));
}

I type in 'a' (without quotes) as input , and the output I got in my gcc version 4.5.1 is :

ch= 1 a=4 char=1

My question is :

If sizeof(c) is 1 , then how can sizeof('a') be 4 ?

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

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

发布评论

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

评论(3

心凉怎暖 2024-12-30 12:09:33

在 C 中,文字字符(例如,'a')是 int,而不是 char。然而,在 C++ 中,文字字符是实际的 char

In C, a literal character (e.g., 'a'), is an int, not a char. In C++, however, literal characters are actual chars.

一个人练习一个人 2024-12-30 12:09:33

因为在 C 语言中,字符常量(例如 'a')的类型为 int

有一个关于此主题的 C 常见问题解答

也许令人惊讶的是,C 中的字符常量是 int 类型,因此
sizeof('a') 是 sizeof(int) (尽管这是 C++ 的另一个领域
不同)。

Because in C character constants, such as 'a' have the type int.

There's a C FAQ about this suject:

Perhaps surprisingly, character constants in C are of type int, so
sizeof('a') is sizeof(int) (though this is another area where C++
differs).

假装不在乎 2024-12-30 12:09:33

在大多数系统上'a'== 97,即字符'a'的ASCII值。

例如:

int i = 97;
char c = i;

如果使用选项 '%c' 打印变量 c 的值,您将在屏幕上看到 'a'。对于您的问题,我们可以将 sizeof('a') 推导为 sizeof(i) 等于 sizeof(97)

您应该能够在 C 标准文档中找到它。

On most of the systems 'a'== 97, which ASCII value of the character 'a'.

for e.g:

int i = 97;
char c = i;

If you print the value of variable c with the option '%c' you'll see 'a' on the screen. for your question we can deduce sizeof('a') as sizeof(i) equable to sizeof(97);

You should be able to find this in C standards document.

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