what is the difference between #include<> and #include”…”?
Answer Posted / shrikanth s.h
#include<>, include the predefined header files,
#include"...." include the userdefined header files where
the control will start searching the file into the current
directory, we should mention the path where it should search.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the use of #include in c?
Where are the auto variables stored?
How is pointer initialized in c?
What is data structure in c and its types?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
State the difference between x3 and x[3].
Why is it important to memset a variable, immediately after allocating memory to it ?
What is pointer & why it is used?
What is the use of a ‘ ’ character?
What is a floating point in c?
Can stdout be forced to print somewhere other than the screen?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Explain what is the use of a semicolon (;) at the end of every program statement?
what are # pragma staments?
Why is struct padding needed?