what is the difference between getch() and getchar()?

Answers were Sorted based on User's Feedback



what is the difference between getch() and getchar()?..

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

what is the difference between getch() and getchar()?..

Answer / shruti

@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

what is the difference between getch() and getchar()?..

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

what is the difference between getch() and getchar()?..

Answer / non linearly

getch()
1. Does not echo
2. procces immediatly the typed character

Is This Answer Correct ?    18 Yes 6 No

what is the difference between getch() and getchar()?..

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

what is the difference between getch() and getchar()?..

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

what is the difference between getch() and getchar()?..

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

what is the difference between getch() and getchar()?..

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

what is the difference between getch() and getchar()?..

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

what is the difference between getch() and getchar()?..

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

Post New Answer

More C Interview Questions

sum of two integers values only other then integer it should print invalid input.

1 Answers  


Tell us something about keyword 'auto'.

0 Answers  


What are local static variables?

0 Answers  


What is fflush() function?

0 Answers  


What happens if header file is included twice?

0 Answers  






i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

0 Answers  


write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?

3 Answers   Mind Tree,


what is data structure?

5 Answers   CBSE,


how many error occurs in C language ?

22 Answers   Infosys, Wipro,


for(;;) printf("C language") What is out put of above??

2 Answers   Practical Viva Questions,


Explain how can I write functions that take a variable number of arguments?

0 Answers  


in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.

0 Answers   TCS,


Categories