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
Ow can I insert or delete a line (or record) in the middle of a file?
How do you define CONSTANT in C?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the difference between procedural and declarative language?
What is restrict keyword in c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
How do you do dynamic memory allocation in C applications?
Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.
What is bash c?
How do you convert strings to numbers in C?
What is the benefit of using #define to declare a constant?
What is a static variable in c?
How can a program be made to print the name of a source file where an error occurs?
What are the types of arrays in c?
What are the advantages and disadvantages of pointers?