linux c getchar()实用演示源码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux c getchar()实用演示源码相关的知识,希望对你有一定的参考价值。
将写代码过程中重要的代码做个备份,如下代码内容是关于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();即可
以上是关于linux c getchar()实用演示源码的主要内容,如果未能解决你的问题,请参考以下文章