what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / mytri
#include<stdio.h>--Search from current directory
#include"stdio.h"--Search from list of directories that are
included in path
| Is This Answer Correct ? | 61 Yes | 28 No |
Post New Answer View All Answers
what are the advantages of a macro over a function?
What is wild pointer in c?
What is oops c?
What are keywords in c with examples?
Why c is procedure oriented?
Why c is called object oriented language?
What is the use of gets and puts?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is file in c preprocessor?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
number of times a digit is present in a number
What is sizeof array in c?
Explain how can I avoid the abort, retry, fail messages?
What is the purpose of void in c?
Can stdout be forced to print somewhere other than the screen?