what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / abhinav
getch() waits for the user to input a character and
displays the output till the user enters a character.As
soon as the user enters a character it transfers the
control back to the main function, without displaying what
character was entered.
getche() does the same thin but it displays the chacter
entered.here e stands for echo.
| Is This Answer Correct ? | 191 Yes | 24 No |
Post New Answer View All Answers
What is an arrays?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
What is logical error?
What is time null in c?
Give me the code of in-order recursive and non-recursive.
What is data structure in c programming?
What is volatile c?
What's the difference between constant char *p and char * constant p?
If errno contains a nonzero number, is there an error?
Why array is used in c?
What is hungarian notation? Is it worthwhile?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What are the different types of errors?
In a switch statement, explain what will happen if a break statement is omitted?