what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / piyush srivastava
getch() function works to get character from the user,but it
is used to hold the output,it may have the alternatives but
it the easiest way to perform this action.
getch() only read the character from the user but getche
also display it on the output screen .
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Difference between Function to pointer and pointer to function
What is a const pointer?
What is external variable in c?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Why is python slower than c?
What is pointer in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
Are pointers integers in c?
Can we declare function inside main?
Is it better to use a macro or a function?
What are the differences between new and malloc in C?
What are the types of type specifiers?
Differentiate between Macro and ordinary definition.
What is a function simple definition?
What is a structure member in c?