what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / phani
getch() is used to read the character,
but getche()is used to read and display character on output.
| Is This Answer Correct ? | 51 Yes | 33 No |
Post New Answer View All Answers
what will be maximum number of comparisons when number of elements are given?
What is assignment operator?
Explain what is the most efficient way to store flag values?
What is a dynamic array in c?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Discuss the function of conditional operator, size of operator and comma operator with examples.
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Which programming language is best for getting job 2020?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the most efficient way to store flag values?
How to declare pointer variables?
explain what are actual arguments?
What is variable in c example?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.