what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / sasireka
getch() returns to the program after hitting any key.
getche() waits for the character, read it and then returns
to the program
| Is This Answer Correct ? | 102 Yes | 32 No |
Post New Answer View All Answers
number of times a digit is present in a number
What is a 'null pointer assignment' error?
application attempts to perform an operation?
What is a structure member in c?
Tell us the use of fflush() function in c language?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Explain what is the difference between text files and binary files?
How can you invoke another program from within a C program?
What is a macro, and explain how do you use it?
How many keywords (reserve words) are in c?
main() { printf("hello"); fork(); }
What is a program flowchart and how does it help in writing a program?
Explain about block scope in c?
How can I open a file so that other programs can update it at the same time?
What are local static variables? How can you use them?