what is the use of getch() function in C program..
difference b/w getch() and getche()??

Answers were Sorted based on User's Feedback



what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / rahul

getch() is for waiting the o/p screen til we enter the inputs

Is This Answer Correct ?    270 Yes 66 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / abhinav

getch() waits for the user to input a character and
displays the output till the user enters a character.As
soon as the user enters a character it transfers the
control back to the main function, without displaying what
character was entered.
getche() does the same thin but it displays the chacter
entered.here e stands for echo.

Is This Answer Correct ?    191 Yes 24 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / sasireka

getch() returns to the program after hitting any key.
getche() waits for the character, read it and then returns
to the program

Is This Answer Correct ?    102 Yes 32 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / sachin banaya

getch() is used to wait the execution of program on console
unless program will skeep the output witout showing on
console of program in short it all time to user to see
output during the run time of program

Is This Answer Correct ?    38 Yes 16 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / phani

getch() is used to read the character,
but getche()is used to read and display character on output.

Is This Answer Correct ?    51 Yes 33 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / rashmi

getch() helps in holding the console screen and helps in reading the codes properly

Is This Answer Correct ?    15 Yes 8 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / lekha

Both getch() and getche() are used to read single character
there is very little difference
-getch() doesn't display output to screen if used without lvalue
-getche() display output to screen even if used without lvalue

following example will clear this.....
1.
main()
{
getch();
}
2.
main()
{
getche();
}
after running above programs...............
when you press any key, you'll exit from output screen
verify the output by pressing alt+F5
1. will not show anything
2.will show the key you were pressed......
hope you get it.............

Is This Answer Correct ?    9 Yes 3 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / sudhir tiwari

# 3 getch() returns to the program after hitting any key.
getche() waits for the character, read it and then returns
to the program

Is This Answer Correct ?    21 Yes 17 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / svmurali

getch() and getche()
both are getting input charecter to user
but getche() display the that charecter to screen

Is This Answer Correct ?    9 Yes 5 No

what is the use of getch() function in C program.. difference b/w getch() and getche()??..

Answer / rajesh kumar

Waiting the input for output screen..

Is This Answer Correct ?    7 Yes 4 No

Post New Answer

More C Interview Questions

What is || operator and how does it function in a program?

0 Answers  


i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....

0 Answers   RBI,


Is it possible to have a function as a parameter in another function?

0 Answers  


How can you determine the size of an allocated portion of memory?

0 Answers   Aspire, Infogain,


can anyone suggest some site name..where i can get some good data structure puzzles???

0 Answers  






write a program to copy a string without using a string?

2 Answers  


what is c?

13 Answers   Tech Mahindra,


Explain how can I convert a number to a string?

0 Answers  


C,c++, Java is all are structural oriented or procedure oriented language..?

6 Answers  


What does int main () mean?

0 Answers  


What is a method in c?

0 Answers  


Explain what does it mean when a pointer is used in an if statement?

0 Answers  


Categories