What is return type in c?
No Answer is Posted For this Question
Be the First to Post Answer
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
Write a program to check palindrome number in c programming?
What is bin sh c?
int a=20; int b=30; int c=40; printf("%d%d%d"); what will be the output?
What is the scope of static variable in c?
What does the && operator do in a program code?
Is it cc or c in a letter?
Explain union.
What is function and its example?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
array of pointer pointer to array pointer to pointer
Why does everyone say not to use scanf? What should I use instead?