WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
Answer Posted / shashank sharma
it depend on data type
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I list all of the predefined identifiers?
What is external variable in c?
What is the purpose of realloc()?
How is null defined in c?
What is the difference between exit() and _exit() function in c?
What are header files and explain what are its uses in c programming?
Explain data types & how many data types supported by c?
Explain how can I remove the trailing spaces from a string?
What are lookup tables in c?
What is the sizeof () a pointer?
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
Why does everyone say not to use gets?
When is a “switch” statement preferable over an “if” statement?
When should the const modifier be used?
What is dynamic dispatch in c++?