what is the difference between getch() and getchar()?
Answers were Sorted based on User's Feedback
Answer / 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 |
@Nishi
the answer you have posted is wrong..
Getch() and getchar() are two inbuilt functions..
in getch()
the argument to the function is any key on the keyboard,
not necessarily be a character (A - Z).
getchar()
the argument is a character -> alphabet (A - Z)..
| Is This Answer Correct ? | 76 Yes | 43 No |
Answer / pinky
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() returns back on reading any character(a-z) or any
hit to the keyboard.
| Is This Answer Correct ? | 34 Yes | 12 No |
Answer / non linearly
getch()
1. Does not echo
2. procces immediatly the typed character
| Is This Answer Correct ? | 18 Yes | 6 No |
Answer / m@ht@b ahm@d
getchar():- this function returns a character that has been recently typed. the typed character is echoed to the computer screen. after typing the appropriate character the user is required to press enter.
getch():- This function also returns a character that has been recently typed, bet neither the user is required to press enter key after entering the character nor the typed character echoed to the computer screen.
getche():- the advantage of this function over getchar() is that as soon as the user types a character, the character is immediately accepted, i.e. the user is not required to press enter key after typing a character.
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / govind
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 ? | 10 Yes | 4 No |
Answer / barath krishnan
getchar() is very similar to using scanf with %c. The getch() function is normally used in 2 cases
1 To read any character not just numbers and alphabets but any
non white space character ( any key oder dan num/caps/scroll locks or tab keys)
2 To keep reading from a stream of inputs without forcing the user to press enter key at the end of each input unlike getchar()
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / arjun tiwari
What is difference between getchar and getch?
Computer Programming Questions
Answers.com > Wiki Answers > Categories > Technology > Computers > Computer Programming > C Programming
View Slide Show
Best Answer
Getchar() will accept a character from keyboard displays immediately while typing and need Enter key to pressed for proceeding.
Getch() Normally we will use it at the end of the main(). It just accepts a key stroke and never displays it and proceeds further.
Getche() will accept a character from keyboard display it immediately does not wait for Enter key to pressed for proceeding.
__________________________________________________________________
getch() - get character from screen without echo and compiler didn't wait for another key.
getche() - get character from screen and compiler didn't wait for another key
getchar() - get character from screen and compiler wait for another key.
_____________________________
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / mayur dharmik
getch()
1. Does not echo
2. procces immediatly the typed character and wait to hit Enter
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
Explain about the constants which help in debugging?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
array contains zeros and ones as elements.we need to bring zeros one side and one other side in single parse. ex:a[]={0,0,1,0,1,1,0,0} o/p={0,0,0,0,0,1,1,1}
Why is extern used in c?
What do you mean by command line argument?
How to avoid structure padding in C?
What is the difference between variable declaration and variable definition in c?
What is the difference b/w Structure & Union?
Explain about C function prototype?
What are the various types of control structures in programming?
What is binary tree in c?