what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / sanjay chandra
#include<stdio.h> /* stdio.h is searched in c:\TCP\INCLUDE
folder. If not found gives compilation error
#include "stdio.h" first searches for stdio.h in
c:\TCP\BIN(current diretory) . If not found searches
c:\tcp\include\ for stdio.h file
| Is This Answer Correct ? | 21 Yes | 7 No |
Post New Answer View All Answers
What is chain pointer in c?
What is #line in c?
What are external variables in c?
I have seen function declarations that look like this
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Can the size of an array be declared at runtime?
What are categories used for in c?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How would you rename a function in C?
Why doesnt that code work?
What is return in c programming?
Tell us the use of fflush() function in c language?
What are local static variables? How can you use them?
How does #define work?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?