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 |
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Write a program to find whether the given number is prime or not?
How to establish connection with oracle database software from c language?
How can I return multiple values from a function?
Program to trim a given character from a string.
What are extern variables in c?
Explain how can a program be made to print the name of a source file where an error occurs?
what do the 'c' and 'v' in argc and argv stand for?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
What are type modifiers in c?
What is the use of linkage in c language?
How can I prevent another program from modifying part of a file that I am modifying?