这可能是一个简单的更正,因为程序非常短,但请帮助我理解为什么我得到奇怪的输出:
#include <stdio.h>
int main(void)
{
char x;
printf("please enter a word, and ctrl + d to see the resault\n");
while ((x = getchar()) != EOF)
{
printf("%d", x);
}
return 0;
}
intput: 'd'
output: 10010