getchar();
从stdio流中读字符,相当于getc(stdin),它从标准输入里读取下一个字符。
代码例子:
#include
#include
int main(void)
{
int c;
int a;
a = getchar(); //从键盘输入一个字符,将该字符给a;
printf ("%c",a);
while ((c = getchar()) != '\n')
{
printf("%c", c);
}
getchar();
return 0;
}
编译运行之后,从键盘中输入字符
在输入时怎样区别哪次是针对哪个的getchar函数? 在getchar前加一句提示语。比如 printf("Please enter your name"); name=getchar(); 设两,