What is the difference between getch() and getche()?
Answer Posted / vinod kumar
getch() returns the character you typed without displaying
it on the screen.
getche() returns the character you typed by displaying
(echoing) it on the screen.
and finally, getchar() works similarly and echos the
character that u typed on the screen after "enter" is given.
| Is This Answer Correct ? | 31 Yes | 1 No |
Post New Answer View All Answers
What is output redirection?
Where static variables are stored in c?
What is c programming structure?
How do you redirect a standard stream?
Should a function contain a return statement if it does not return a value?
What is a c token and types of c tokens?
What is a 'null pointer assignment' error?
How do I swap bytes?
How a string is stored in c?
What is static and volatile in c?
Where static variables are stored in memory in c?
What are local static variables? How can you use them?
Is c compiled or interpreted?
What is clrscr in c?
What does volatile do?