what is the difference between getch() and getche()?
Answer Posted / azad sable,chiplun.
The 'e' in getche() fuction means it echoes(display) the
character that you typed to the screen.As against it ,getch
()just returns the character that that you typed without
echoing it on the screen.
| Is This Answer Correct ? | 25 Yes | 2 No |
Post New Answer View All Answers
What is static memory allocation? Explain
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
what does static variable mean?
What does c mean before a date?
Explain what are the different file extensions involved when programming in c?
What are void pointers in c?
Are enumerations really portable?
What is the difference between ++a and a++?
Write a program to check whether a number is prime or not using c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
How many parameters should a function have?
Combinations of fibanocci prime series
write a program to create a sparse matrix using dynamic memory allocation.
c language interview questions & answer
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer