what is the use of getch() function in C program..
difference b/w getch() and getche()??
Answer Posted / satish dwivedi
getch() represent in c program to receive value in input
integer and terminate the whole program.
| Is This Answer Correct ? | 14 Yes | 26 No |
Post New Answer View All Answers
What is sizeof int in c?
What is nested structure in c?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
How many types of operators are there in c?
write a programming in c to find the sum of all elements in an array through function.
What are c preprocessors?
There seem to be a few missing operators ..
What is the meaning of typedef struct in c?
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
Explain what’s a signal? Explain what do I use signals for?
What is formal argument?
What are the benefits of c language?
How can I read/write structures from/to data files?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.