What is the difference between getch() and getche()?
Answer / 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 |
Which header file should you include if you are to develop a function which can accept variable number of arguments?
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
How many keywords (reserve words) are in c?
What is indirection?
implement OR gate without using any bitwise operator.
What are volatile variables?
How is a pointer variable declared?
how to execute a program using if else condition and the output should enter number and the number is odd only...
how to write a program which adds two numbers without using semicolon in c
What is a function in c?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }