📜  getc(),getchar(),getch()和getche()之间的区别

📅  最后修改于: 2021-05-25 23:04:46             🧑  作者: Mango

所有这些功能都从输入中读取一个字符并返回一个整数值。返回该整数以容纳用于指示失败的特殊值。 EOF值通常用于此目的。

getc():
它从给定的输入流中读取单个字符,并在成功时返回相应的整数值(通常为read 字符的ASCII值)。失败时返回EOF。

句法:

int getc(FILE *stream); 

例子:

// Example for getc() in C
#include 
int main()
{
   printf("%c", getc(stdin));
   return(0);
}
Input: g (press enter key)
Output: g 

示例应用程序:比较两个文件并报告不匹配的C程序

getchar():
getc()和getchar()之间的区别是getc()可以从任何输入流读取,但是getchar()可以从标准输入读取。因此,getchar()等效于getc(stdin)。

句法:

int getchar(void); 

例子:

// Example for getchar() in C
#include 
int main()
{
   printf("%c", getchar());
   return 0;
}
Input: g(press enter key)
Output: g 

getch():
getch()是非标准函数,存在于conio.h头文件中,该头文件通常由Turbo C等MS-DOS编译器使用。它不是C标准库或ISO C的一部分,也不由POSIX定义(源:http://en.wikipedia.org/wiki/Conio.h)
像上面的功能一样,它也从键盘读取单个字符。但是它不使用任何缓冲区,因此无需等待回车键即可立即返回输入的字符。
句法:

int getch();

例子:

// Example for getch() in C
#include 
#include 
int main()
{
   printf("%c", getch());   
   return 0;
}
Input:  g (Without enter key)
Output: Program terminates immediately.
        But when you use DOS shell in Turbo C, 
        it shows a single g, i.e., 'g'

getche()
像getch()一样,这也是conio.h中存在的非标准函数。它从键盘读取单个字符,并立即在输出屏幕上显示,而无需等待回车键。

句法:

int getche(void); 

例子:

#include 
#include 
// Example for getche() in C
int main()
{
  printf("%c", getche());
  return 0;
}
Input: g(without enter key as it is not buffered)
Output: Program terminates immediately.
        But when you use DOS shell in Turbo C, 
        double g, i.e., 'gg'
想要从精选的最佳视频中学习和练习问题,请查看《基础知识到高级C的C基础课程》。