what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answer Posted / vignesh1988i
in case of <stdio.h> this will be checking only the folder
containing C compiler...... as we will be describing the
path in the directories option in the IDE.....
in case of "stdio.h" this will be checking the entire hard
disk there by deleting the path given in the directories
explicitly .....
thank u
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
What is the return type of sizeof?
Why do we use namespace feature?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What are the features of c language?
Where local variables are stored in c?
What is the process of writing the null pointer?
How can I determine whether a machines byte order is big-endian or little-endian?
How do I get a null pointer in my programs?
Who developed c language?
Are the outer parentheses in return statements really optional?
What is equivalent to ++i+++j?
Write a program of advanced Fibonacci series.
define string ?
Is c object oriented?
How to get string length of given string in c?