what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / ajendra singh
During the program execution, a single character is get or read through the getch(). The given value is not displayed on the screen and the compiler does not wait for another character to be typed and returns to the program.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Is it possible to have a function as a parameter in another function?
What is queue in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Can we declare a function inside a function in c?
Explain what is the difference between functions abs() and fabs()?
Write a program to reverse a given number in c language?
Why do we write return 0 in c?
Write a code to remove duplicates in a string.
What is #define used for in c?
What is string constants?
What is the difference between array and structure in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
How many levels deep can include files be nested?
Explain the use of function toupper() with and example code?