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 |
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
How variables are declared in c?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
How to calculate Total working time using Login and logout?
2 Answers CTS, Cygnus, Infosys, Signal Networks, TCS, Wipro,
What is volatile in c language?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
how i m write c program 1.check prime number 2.prime number series
What is the value of c?
What is the use of gets and puts?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Find if a number is power of two or not?