将写代码过程中重要的代码做个备份,如下代码内容是关于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();即可