what is the difference between <stdio.h> and "stdio.h"
Answer Posted / 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 |
Post New Answer View All Answers
What is hash table in c?
How can I automatically locate a programs configuration files in the same directory as the executable?
Can we assign integer value to char in c?
Write a program to check palindrome number in c programming?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Explain output of printf("Hello World"-'A'+'B'); ?
When do we get logical errors?
What are static variables in c?
Why do we use main function?
Why do we use null pointer?
Explain what are linked list?
Explain union.
What are the standard predefined macros?
What is switch in c?