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 a byte, what is the maximum decimal number that you can accommodate?
What is dangling pointer in c?
Can you define which header file to include at compile time?
Write a program to reverse a string.
What is the difference between array and linked list in c?
Describe the difference between = and == symbols in c programming?
What will be your course of action for a push operation?
how do you programme Carrier Sense Multiple Access
What is a good way to implement complex numbers in c?
What is the use of a semicolon (;) at the end of every program statement?
How do you list a file’s date and time?
What is auto keyword in c?
Where define directive used?
What is difference between arrays and pointers?
Explain null pointer.