Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / 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 |
Post New Answer View All Answers
Why should I prototype a function?
What is the difference between variable declaration and variable definition in c?
What are the advantages of Macro over function?
What are the types of data structures in c?
What is %lu in c?
What is bubble sort technique in c?
What are types of preprocessor in c?
Why is struct padding needed?
What is array in c with example?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is void c?
How will you divide two numbers in a MACRO?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What does 4d mean in c?
When is a void pointer used?