Answer Posted / santhi
a preprocessor which process some other files before our
main program.
eg:#include<stdio.h>
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
How many types of functions are there in c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the role of this pointer?
What’s a signal? Explain what do I use signals for?
largest Of three Number using without if condition?
What are the difference between a free-standing and a hosted environment?
How can I trap or ignore keyboard interrupts like control-c?
How do I get an accurate error status return from system on ms-dos?
What is calloc malloc realloc in c?
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 difference between near, far and huge pointers?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are the back slash character constants or escape sequence charactersavailable in c?
What is new line escape sequence?