what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answer Posted / jasbir singh
When we use #include<stdio.h>, the compiler will look at the
compiler's directory for stdio.h file and then include it.
When we use #include"stdio.h", it will look in the source
code's directory for the stdio.h file.
"" are basically used when the header file is placed with
the source code(means .c or .cpp files), not in the C
Compiler's 'include' directory. It is basically used to
include our own self generated header files into our program.
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Should I learn c before c++?
What is the difference between far and near ?
Is there anything like an ifdef for typedefs?
Stimulate calculator using Switch-case-default statement for two numbers
how many key words availabel in c a) 28 b) 31 c) 32
Why c is faster than c++?
What is the symbol indicated the c-preprocessor?
What are the scope of static variables?
write an algorithm to display a square matrix.
Explain the process of converting a Tree into a Binary Tree.
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
List some of the dynamic data structures in C?
Explain what are run-time errors?
any "C" function by default returns an a) int value b) float value c) char value d) a & b