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 can’t constant values be used to define an array’s initial size?
What is a null pointer in c?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
Explain how do you determine whether to use a stream function or a low-level function?
What is spark map function?
how can i calculate mean,median,mode by using c program
How the processor registers can be used in C ?
What is gets() function?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.