what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / 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 |
Post New Answer View All Answers
What is header file definition?
What are the advantages of using new operator as compared to the function malloc ()?
Why can’t constant values be used to define an array’s initial size?
Where static variables are stored in memory in c?
What is a #include preprocessor?
When can a far pointer be used?
Define the scope of static variables.
Who is the founder of c language?
int far *near * p; means
Why is c platform dependent?
What are pointers? What are stacks and queues?
What are the features of the c language?
What is 'bus error'?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
what will be maximum number of comparisons when number of elements are given?