what is the difference between getch() and getche()?
Answer Posted / rambabu
these two are different where the difference is identified
as when we r using getch() for get the echo output it is
black screen and as well as getche() it containsa blue screen
| Is This Answer Correct ? | 7 Yes | 15 No |
Post New Answer View All Answers
Explain #pragma statements.
Write a program to reverse a linked list in c.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is a MAC Address?
how could explain about job profile
What is "Duff's Device"?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
which type of aspect you want from the student.
What is the use of define in c?
is it possible to create your own header files?
What is the purpose of sprintf() function?
What functions are used for dynamic memory allocation in c language?
Why is c called "mother" language?
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
string reverse using recursion