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
No Answer is Posted For this Question
Be the First to Post Answer
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is #define in c?
WAP to accept first name,middle name & last name of a student display its initials?
is forign key will be unique key any table or not?
What are different types of pointers?
what is compiler
What do you mean by team??
what is the difference between. system call and library function?
Is it better to use malloc() or calloc()?
Why is c called c not d or e?
Explain a file operation in C with an example.
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program