what will be the out put.
#include
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
2 6437if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
2 10776Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
2 5298write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
5 14767Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
2523
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is oops c?
What does it mean when the linker says that _end is undefined?
What are the advantages and disadvantages of pointers?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the advantages of using macro in c language?
What is binary tree in c?
the question is that what you have been doing all these periods (one year gap)
What is structure packing in c?
What does == mean in texting?
What are the advantages and disadvantages of a heap?
What are the 4 types of organizational structures?
How can I use a preprocessorif expression to ?
Write a C program in Fibonacci series.
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