what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / svmurali
getch() and getche()
both are getting input charecter to user
but getche() display the that charecter to screen
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
Which is best book for data structures in c?
Can we change the value of #define in c?
Can the curly brackets { } be used to enclose a single line of code?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What does node * mean?
What is a pragma?
What is 02d in c?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
Why c is faster than c++?
What is a pointer variable in c language?
By using C language input a date into it and if it is right?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is the advantage of a random access file?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
write a program in c language to print your bio-data on the screen by using functions.