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 meant by errors and debugging?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Give me the code of in-order recursive and non-recursive.
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is the function of multilevel pointer in c?
What happens if you free a pointer twice?
Tell us two differences between new () and malloc ()?
What is static and auto variables in c?
What is the difference between array and pointer?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Why do we use int main?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is difference between union All statement and Union?