what is the difference between <stdio.h> and "stdio.h"
Answer Posted / vishal
stdio.h> is a header file which available in include
directory of the system. When we write #include<stdio.h>
preprocessor search for it in include directory directly
and not out of this directory. But when we write "stdio.h"
precessor start searching for this header file from current
directory and then in parent directories. So if we write
our own stdio.h in the current directory and include in
program as #include"stdio.h" then our header will be
included instead of system header.
Is This Answer Correct ? | 38 Yes | 8 No |
Post New Answer View All Answers
What is static identifier?
What is a file descriptor in c?
Are global variables static in c?
Why isnt there a numbered, multi-level break statement to break out
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 scanf () in c?
What is 02d in c?
How can you determine the size of an allocated portion of memory?
Can you explain the four storage classes in C?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Do you know what are the properties of union in c?
What is selection sort in c?
what will be maximum number of comparisons when number of elements are given?
What are the valid places to have keyword “break”?
Does free set pointer to null?