what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / venkatesh kr
getch() is use in c langauge for hold the screen.
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
Is there anything like an ifdef for typedefs?
What is #ifdef ? What is its application?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What does typedef struct mean?
How do I send escape sequences to control a terminal or other device?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Write a program to print factorial of given number without using recursion?
How does free() know explain how much memory to release?
Is there any possibility to create customized header file with c programming language?
Differentiate between calloc and malloc.
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What does c mean in standard form?
what will be the output for the following main() { printf("hi" "hello"); }
Array is an lvalue or not?