what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / pravin
getch() is the function which only reserv our time and it
is portable to see the direct output without going into the
another menu. it gives us echoing. in simple wayit is the
shortcut for the output userscreen.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Is it acceptable to declare/define a variable in a c header?
Why c is a mother language?
How can you return multiple values from a function?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What is array in C
The file stdio.h, what does it contain?
What does a pointer variable always consist of?
Explain zero based addressing.
Explain what are its uses in c programming?
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
What does 1f stand for?
Can a file other than a .h file be included with #include?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Why does notstrcat(string, "!");Work?