what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answers were Sorted based on User's Feedback
Answer / satnam
getch() is accept the input from the user & write directly in the memory without displaying on the screen.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sudheer varma
getch() is a predefined function.By using this function we
can read a key stroke from keyword.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ajendra singh
During the program execution, a single character is get or read through the getch(). The given value is not displayed on the screen and the compiler does not wait for another character to be typed and returns to the program.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / valli
getche() is used to get a character from console and echoes to the screen.
getchar() is used to get or read the input (i.e a single character)at run time.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / satish dwivedi
getch() represent in c program to receive value in input
integer and terminate the whole program.
| Is This Answer Correct ? | 14 Yes | 26 No |
Answer / vbr
getch() is the function to see the out put but getch()??
is used to examin the out put
| Is This Answer Correct ? | 74 Yes | 103 No |
Answer / vijay
if u uses gcc u find it good for nothing ..........
| Is This Answer Correct ? | 6 Yes | 35 No |
write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.
What is scope rule in c?
what is compiler
Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +
What is null pointer in c?
How can I find out how much memory is available?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
What is s or c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
When should structures be passed by values or by references?
how to swap 2 numbers in a single statement?
Explain a pre-processor and its advantages.