使用getch()函数读取\n,返回字符

#include stdio.h#include conio.hint main( void ){int ch;while ((ch = getche()) != \\n)

编程学习网为您整理以下代码实例,主要实现:使用getch()函数读取\n,返回字符,希望可以帮到各位朋友。

#include <stdio.h>
#include <conio.h>

int main( voID )
{
     int ch;

     while ((ch = getche()) != '\n')
         putchar(ch);

     return 0;
}

本文标题为:使用getch()函数读取\n,返回字符

基础教程推荐