what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / sudhir tiwari
# 3 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 ? | 21 Yes | 17 No |
Post New Answer View All Answers
Explain union. What are its advantages?
Give differences between - new and malloc() , delete and free() ?
What is volatile variable in c?
What is the benefit of using const for declaring constants?
Write a program to generate the Fibinocci Series
Why is struct padding needed?
What is malloc calloc and realloc in c?
Explain what are bus errors, memory faults, and core dumps?
Why do we need a structure?
write a proram to reverse the string using switch case?
Is there a built-in function in C that can be used for sorting data?
Which is better malloc or calloc?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
what are the advantages of a macro over a function?
Why we use conio h in c?