将写代码过程中重要的代码做个备份,如下代码内容是关于linux c getchar()实用演示的代码,应该对小伙伴有一些用。
```
#include <stdio.h>
int main(void)
{
int c;
is line buffered; this means it will
while ((c = getchar()) != ‘n‘)
printf("%c", c);
return 0;
}
注:可以利用getchar()函数让程序调试运行结束后等待编程者按下键盘才返回编辑界面,用法:在主函数结尾,return0;之前加上getchar();即可
原文地址:http://blog.51cto.com/14117740/2348920
时间: 2024-10-15 10:25:19