【发布时间】:2013-12-12 16:44:43
【问题描述】:
#include<stdio.h>
#include<conio.h>
main()
{
int i=369;
printf("%c",i);
getch();
}
O/p
===
q
在这里,将 'q' 作为输出。
我怀疑 ascii 字符限制是 255 。但是为什么它给出'q'作为输出呢?
【问题讨论】:
-
好吧,如果你看一下 ascii 图表:asciitable.com 你会看到限制是 128。
-
@Scotty Bauer 我以为限制是 127。