what is the difference between getch() and getchar()?
Answer Posted / shivani
getchar() is a function call: it reads in a single
character and waits for the user to hit 'enter key' before
reading the character. This line is included because many
compiler environments will open a new console window, run
the program, and then close the window before you can see
the output. This command keeps that window from closing
because the program is not done yet because it waits for
you to hit enter. Including that line gives you time to see
the program run.
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 ? | 9 Yes | 10 No |
Post New Answer View All Answers
In C programming, how do you insert quote characters (‘ and “) into the output screen?
What is the return type of sizeof?
How can I change their mode to binary?
What is the use of extern in c?
Explain the difference between structs and unions in c?
Is c is a high level language?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
How do I read the arrow keys? What about function keys?
What is the purpose of main( ) in c language?
Explain why C language is procedural?
Why c is a procedural language?
What is c programing language?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is an auto keyword in c?
What is a c token and types of c tokens?