what is the difference between <stdio.h> and "stdio.h"
Answer Posted / kiran shelke,aurangabad
When we write <stdio.h> that mean we can access this header
file from the include directory,but if this header file is
not present in this folder and its available in other
directory then it not access it.But when we write the
"stdio.h" then we can access this header file which
available in any other directory..
In short #include"stdio.h" is best option for ERROR free program
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What is the difference between struct and union in C?
How can you call a function, given its name as a string?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Can we add pointers together?
What does node * mean?
How can I implement sets or arrays of bits?
Explain what is #line used for?
When is a “switch” statement preferable over an “if” statement?
What is void pointers in c?
what is a constant pointer in C
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why we use void main in c?
write a program to display all prime numbers
Explain Basic concepts of C language?