Explain how do you print an address?
No Answer is Posted For this Question
Be the First to Post Answer
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
What is multidimensional arrays
What is the use of printf() and scanf() functions?
Explain the difference between ++u and u++?
Should I learn data structures in c or python?
Can you subtract pointers from each other? Why would you?
what is mallloc()?how it works?
what is the flow of execution in cprogram? ex:printf();,scanf();
What is the correct code to have following output in c using nested for loop?
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
What is the use of a static variable in c?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason