what is difference between #include<stdio.h> and
#include"stdio.h"
Answers were Sorted based on User's Feedback
Answer / bharatgs7
<stdio.h> means its a in-built header file, "stdio.h" means
its an user-defined header file
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / somichoudhary
In #include<stdio.h>
The c compiler search the header files in Tc-Bin library
But in "stdio.h">
search the header files in local c: folder
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / ep
#include <stdio.h>
Will look for the header file in the standard include paths.
#include "stdio.h"
Will look for the file first in the current directory, then
it wil look for it in the standard include paths, if not found.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / jeke kumar gochhayat
in #include<stdio.h> , stdio.h is a predefined header file
in the include directory.
but in #include"stdio.h" is a userdefined header files
but functions are same
| Is This Answer Correct ? | 0 Yes | 0 No |
why arithmetic operation can’t be performed on a void pointer?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Write a program to check prime number in c programming?
find the size of structure without using the size of function
Are enumerations really portable?
What was noalias and what ever happened to it?
What is C++
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
what is diffrence between string and character array?
What is function what are the types of function?
Why Modern OS are interrupt driven?Give an example