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
Why do we use stdio h and conio h?
What is %d called in c?
What is the ANSI C Standard?
What is a ternary operator in c?
what is the structure pointer?
What does 1f stand for?
What is return type in c?
What is #define size in c?
What are the 5 organizational structures?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What are pointers? What are stacks and queues?
What is spaghetti programming?
Why do we use header files in c?
How can a program be made to print the name of a source file where an error occurs?
What does the && operator do in a program code?