what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / abhinav
getch() waits for the user to input a character and
displays the output till the user enters a character.As
soon as the user enters a character it transfers the
control back to the main function, without displaying what
character was entered.
getche() does the same thin but it displays the chacter
entered.here e stands for echo.
| Is This Answer Correct ? | 191 Yes | 24 No |
Post New Answer View All Answers
What is the difference between c &c++?
What is const and volatile in c?
What is getch c?
What is a pragma?
Explain what are preprocessor directives?
Is it better to use malloc() or calloc()?
What is #include stdio h?
what will be maximum number of comparisons when number of elements are given?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
what is event driven software and what is procedural driven software?
Explain the difference between malloc() and calloc() in c?
What is scope and lifetime of a variable in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Explain what does a function declared as pascal do differently?