Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / 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 |
Post New Answer View All Answers
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Can stdout be forced to print somewhere other than the screen?
how to create duplicate link list using C???
What is n in c?
How can I dynamically allocate arrays?
Explain what are bus errors, memory faults, and core dumps?
What is void main () in c?
In C language what is a 'dangling pointer'?
Can we use any name in place of argv and argc as command line arguments?
explain what is an endless loop?
Are local variables initialized to zero by default in c?
How does struct work in c?
What is the purpose of void in c?
Can you please explain the difference between strcpy() and memcpy() function?
What is data types?