while running a program, i got the msg that press return key
to exit.what that mean in C as there are no such options as
far i know.
Answer Posted / thiruapthi rao
generally return key is considered as enter key
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the difference between ++a and a++?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Explain how do you use a pointer to a function?
What is optimization in c?
Explain what happens if you free a pointer twice?
Why do we use static in c?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
How can I do graphics in c?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
When should structures be passed by values or by references?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
How can I manipulate individual bits?
Why does notstrcat(string, "!");Work?
What is the use of typedef in structure in c?
What is the use of #include in c?