Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Why n++ execute faster than n+1 ?

2 Answers  


what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);

10 Answers   IBM,


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

0 Answers  


given post order,in order construct the corresponding binary tree

0 Answers   S-Cube, Wipro,


Why do some versions of toupper act strangely if given an upper-case letter?

0 Answers  


how to execute with out main in cprogram

15 Answers   Infosys,


To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9

0 Answers   HCL,


What is Full Form of C and Why We use C

23 Answers  


Reverse a string word by word??

9 Answers  


Write a program to find the given number is odd or even without using any loops(if,for,do,while)

4 Answers   CNC, Gokul,


Why do we use header files in c?

0 Answers  


How can I determine whether a machines byte order is big-endian or little-endian?

0 Answers  


Categories