what is the difference between <stdio.h> and "stdio.h"
Answers were Sorted based on User's Feedback
Answer / tutgfjyhg
What is the difference between #include “stdio.h” and #include <stdio.h> in C?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / arun.k
#include<stdio.h> does not search the source directory,if
we write #include"stdio.h" it will search the source path
first end include that path
| Is This Answer Correct ? | 8 Yes | 9 No |
Answer / kuldeep
hello in simple way-
when we are using #include<stdio.h> in our program here no
need for search the header files in directory. but when we
are using the #include"stdio.h" in our program firstly
header files search in current directory/parent directory.
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / cpmt
<stdio.h> searches in the current directory."stdio.h"
searches in the both source and current directory.
| Is This Answer Correct ? | 6 Yes | 10 No |
What is "Duff's Device"?
What is void main ()?
What are header files why are they important?
plz let me know how to become a telecom protocol tester. thank you.
What is a stream?
swapping of two numbers without using third variable using AND and OR operators
write a c program in such a way that if we enter the today date the output should be next day's date.
Can we add pointers together?
What is volatile variable how do you declare it?
List a few unconditional control statement in c.
Is swift based on c?
Why do we use return in c?