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
in iso what are the common technological language?
What is a c token and types of c tokens?
Explain main function in c?
What is assert and when would I use it?
What is unary operator?
number of times a digit is present in a number
What is cohesion and coupling in c?
How can I call a function with an argument list built up at run time?
What is your stream meaning?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is static and auto variables in c?
How many levels of pointers can you have?
What are the differences between Structures and Arrays?
What is wrong with this program statement? void = 10;
What are structural members?