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 auto keyword in c?
Why do we need functions in c?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What are the advantages of Macro over function?
Explain logical errors? Compare with syntax errors.
What are the 32 keywords in c?
What does emoji p mean?
What is anagram in c?
Explain what standard functions are available to manipulate strings?
What do you mean by keywords in c?
the question is that what you have been doing all these periods (one year gap)
What is string concatenation in c?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Why & is used in scanf in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?