any string of bits of length 'n' represents a unique non-
negative integer between.............?
Answers were Sorted based on User's Feedback
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
Explain the use of 'auto' keyword in c programming?
What are the different types of linkage exist in c?
Write a program to check armstrong number in c?
How to Clear last bit if it 1 using Macro TURN_OFF_BIT_LAST
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
In how much time you will write this c program? Prime nos from 1 to 1000
What is data types?
why division operator not work in case of float constant?
What is C language Terminator?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory