what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / divyansh and ankur
as in the case of getch(),whn user rturn to the program after hitting the key that charctr will be erad n get stored as comapred with getch () the compiler will not store the value
,as by pressing alt+f5 in case getche ()
u wil notice tht scren will show the charctr that u pressed to go back o the progrm as it willl not show tht chrctr in simple getch()..thank u buddy
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is the difference between text and binary i/o?
If fflush wont work, what can I use to flush input?
Why c is a procedural language?
What is pragma c?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Write a C program to count the number of email on text
Explain how do you view the path?
What is getche() function?
What is the easiest sorting method to use?
What is quick sort in c?
what is the height of tree if leaf node is at level 3. please explain
Why main function is special give two reasons?
Can one function call another?