C的一个死循环,请各位高人看看
#include<stdio.h>void main()
{
int i=0;
char c;
while(1)
{
c='\0';
while(c!=13&&c!=27)
{
c=getchar();
printf("%c\n",c);
}
if(c==27) break;
i++;
printf("The NO. is %d!\n",i);
}
运行后,输入了字母,然后在按ESC键和输入12和27都跳不出循环,新手上路,请个位高人指点一下,谢了
printf("The end!");
}