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 |
Explain the advantages and disadvantages of macros.
write a c program to remove all the duplicate characters in a string and replace with single character? ex:-input- AAABBBCCC output- ABC
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250
what is the function of pragma directive in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
Explain do array subscripts always start with zero?
write a c program to store and print name,address,roll.no of a student using structures?
write a program that will print %d in the output screen??
What is the sizeof () operator?
Which of the following data structures is on average the fastest for retrieving data: 1) Binary Tree 2) Hash Table 3) Stack