Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answers were Sorted based on User's Feedback
Answer / arif
"stdio.h" linker search the header file in the current directory
<stdio.h> linker search the header file in all the directories
| Is This Answer Correct ? | 15 Yes | 2 No |
Answer / sourisengupta
"stdio.h" linker search the header file first in the
current directory, if it does not find there then it will
search the directory which is declared by the compiler as a
header file directory and all the header file stores there.
<stdio.h> linker search the header file in all the
particular which is declared by the compiler as a header
file directory.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / arif
"stdio.h" C compiler-preprocessor search the header file in the current directory
<stdio.h> C preprocessor search the header file in all the directories
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / g.deepa
#include"stdio.h" is the creating by the user
(within Double quotes header files are created by the user)
#include<stdio.h> is the header file of programming
language.It is the created by the Programmers.
| Is This Answer Correct ? | 9 Yes | 10 No |
Answer / bipin chandra sai.s
hay there no difference between both of them both are same
| Is This Answer Correct ? | 0 Yes | 5 No |
What are the modifiers available in c programming language?
How do you determine whether to use a stream function or a low-level function?
If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.
What is merge sort in c?
What is Full Form of C and Why We use C
Differentiate call by value and call by reference?
How to avoid buffer overflow?
Which programming language is best for getting job 2020?
how i m write c program 1.check prime number 2.prime number series
Tell me about low level programming languages.
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?