使用getch()函数读取char并处理非ANSI代码

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

编程学习网为您整理以下代码实例,主要实现:使用getch()函数读取char并处理非ANSI代码,希望可以帮到各位朋友。

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

int main( voID )
{
     int ch;

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

     return 0;
}

本文标题为:使用getch()函数读取char并处理非ANSI代码

基础教程推荐