我有这个简单的程序:
#include <stdio.h>
int main()
{
int c;
while ( ( c = getchar()) != EOF)
printf("%d %c\n", c, c);
return 1;
}
但是由于某种原因,在执行时我最后得到了一个额外的值十:
a
97 a
10
b
98 b
10
abc
97 a
98 b
99 c
10
值 10 是多少,它来自哪里?我如何阻止它发生?
解决方案:
#include <stdio.h>
#include <ctype.h>
int main()
{
int c;
while ( ( c = getchar()) != EOF)
{
if ( isprint (c))
{
printf("%d %c\n", c, c);
}
}
return 1;
}