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 are high level languages like C and FORTRAN also known as?
What is a null string in c?
What is #define?
How do I copy files?
Write a program to reverse a given number in c?
What is the difference between malloc calloc and realloc in c?
how to introdu5ce my self in serco
Write a program to print factorial of given number using recursion?
What is operator promotion?
about c language
When should I declare a function?
What is a static variable in c?
What is the difference between int main and void main?
Explain how can I prevent another program from modifying part of a file that I am modifying?
What is the difference between local variable and global variable in c?