what is the difference between getch() and getche()?
Answers were Sorted based on User's Feedback
Answer / m.karthiga
the getch() does not echo any characters. but getche()
should echo the characters
| Is This Answer Correct ? | 67 Yes | 7 No |
Answer / rama krishna sidhartha
Here are some examples for getch() and getche() to distinguish :
Example for getch() :
main()
{
getch();
}
OUTPUT : black screen(nothing is displayed)
Example for getche() :
main()
{
getche();
}
OUTPUT : u(the cursor waits for sometime untill you press
any key from the keyboard after pressing it immediately goes
to blue screen)
| Is This Answer Correct ? | 40 Yes | 10 No |
Answer / azad sable,chiplun.
The 'e' in getche() fuction means it echoes(display) the
character that you typed to the screen.As against it ,getch
()just returns the character that that you typed without
echoing it on the screen.
| Is This Answer Correct ? | 25 Yes | 2 No |
Answer / beulah david
Both getch() and getche() are used to read single character
there is very little difference
For Example.....
1.
main()
{
getch();
}
after running the above program
when you press any key, you'll exit from output screen
verify the output by pressing alt+F5
will not show anything
OUTPUT : black screen(nothing is displayed)
2.
main()
{
getche();
}
will show the key you were pressed
OUTPUT : u(the cursor waits for sometime untill you press
any key from the keyboard after pressing it immediately goes
to blue screen)
| Is This Answer Correct ? | 15 Yes | 9 No |
Answer / ayaskanta
getch is used to get a character from keyboard. once a key
is pressed it goes back to blue screen. In the case of
getche the compiler waits for you to press ENTER after you
have entered another character through keyboard.
| Is This Answer Correct ? | 14 Yes | 9 No |
Answer / umer khan
getch() is a library file to #include <conio.h> which is mostly used in stidios compiler......
while getche() takes input frm the user withtout presing '\r'
| Is This Answer Correct ? | 3 Yes | 5 No |
Answer / rambabu
these two are different where the difference is identified
as when we r using getch() for get the echo output it is
black screen and as well as getche() it containsa blue screen
| Is This Answer Correct ? | 7 Yes | 15 No |
Is there any possibility to create customized header file with c programming language?
How are variables declared in c?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
Where static variables are stored in c?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
Explain how can I avoid the abort, retry, fail messages?
What are the characteristics of arrays in c?
do you think its fraud or original company?
5 Write an Algorithm to find the maximum and minimum items in a set of ‘n’ element.
write a program to swap two variables a=5 , b= 10 without using third variable
how could explain about job profile
what is the difference between NULL('\0') and 0?