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


Please Help Members By Posting Answers For Below Questions

why we wont use '&' sing in aceesing the string using scanf

1778


How can I manipulate individual bits?

605


Why isnt any of this standardized in c?

630


Can include files be nested?

627


What is the purpose of void pointer?

591






Array is an lvalue or not?

635


What is call by value in c?

556


State the difference between realloc and free.

628


Write a program to print factorial of given number using recursion?

601


Explain what will the preprocessor do for a program?

594


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

906


Tell me the use of bit field in c language?

626


How to declare pointer variables?

683


write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.

2450


What is the 'named constructor idiom'?

637