totally how much header files r in c language
Answer Posted / mod
there r 24 header files in iso standerd of c language
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
State the difference between x3 and x[3].
What does the c preprocessor do?
What do you understand by normalization of pointers?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Is c still used?
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 is zero based addressing?
If I have a char * variable pointing to the name of a function ..
What are the disadvantages of c language?
what are # pragma staments?
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
How can you restore a redirected standard stream?
What are the types of unary operators?
Calculate 1*2*3*____*n using recursive function??