What does e stand for in getche() function in C language.

Questions by kumar_sarma2000   answers by kumar_sarma2000

Showing Answers 1 - 6 of 6 Answers

Shilpa

  • May 19th, 2007
 

Hi ,

in getche() e stands for "echo" When the function is encountered, user has to type in any key that it displays on monitor( echos characher). In case of getch() function it accepts character but doesnt display that.
 
Have a fun with C
Shilpa

kbjarnason

  • Jul 1st, 2010
 

It stands for nothing, as C has neither a getch nor a getche function.

However, some implementations include a getch and getche function, which are generally intended to get characters from a keyboard, but without waiting (i.e. if no key has been pressed, get back to work doing sometihng useful).  On those implementations, the usual difference is that getche echoes the character back to the display, whereas getch doesn't.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions