Answer Posted / hrpynux@gmail.com
The #line directive tells the preprocessor to set the compiler's reported values for the line number and filename to a given line number and filename.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is #line used for?
What is the difference between arrays and pointers?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
difference between native and cross compilers
What is the benefit of using an enum rather than a #define constant?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
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 echo in c programming?
Can a function argument have default value?
What is a example of a variable?
What is the value of c?
Why can't I perform arithmetic on a void* pointer?
while initialization of array why we use a[][2] why not a[2][]...?