what is the difference between getch() and getchar()?
Answer Posted / nishi
getch() is not waiting to press enter to show output on screen.
but getchar() is waiting to press enter to show output.
| Is This Answer Correct ? | 92 Yes | 46 No |
Post New Answer View All Answers
What are the 4 data types?
What is stack in c?
What are the advantages of Macro over function?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What does sizeof return c?
What are qualifiers in c?
How to write c functions that modify head pointer of a linked list?
What is build process in c?
What are reserved words?
What is the acronym for ansi?
What is getch?
What are the advantages of using macro in c language?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
What is size of union in c?
Can we change the value of #define in c?