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 |
what is difference between array of characters and string
Can a local variable be volatile in c?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Write a programe print the sum of series 0,1,2,.....10
What is 1d array in c?
What is alloca() and why is its use discouraged?
The file stdio.h, what does it contain?
Why static variable is used in c?
What are c identifiers?
What does == mean in texting?
du u know test pattern for robosoft? Plz share
1 Answers RoboSoft, TATA, Wipro,
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.