what is difference between #include<stdio.h> and
#include"stdio.h"

Answers were Sorted based on User's Feedback



what is difference between #include<stdio.h> and #include"stdio.h"..

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

what is difference between #include<stdio.h> and #include"stdio.h"..

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

what is difference between #include<stdio.h> and #include"stdio.h"..

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

what is difference between #include<stdio.h> and #include"stdio.h"..

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

Post New Answer

More C Interview Questions

How many types of sorting are there in c?

0 Answers  


What is the meaning of c in c language?

0 Answers  


Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

0 Answers  


how to implement stack operation using singly linked list

2 Answers  


A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??

3 Answers   TCS,






20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????

2 Answers  


What is pointer & why it is used?

0 Answers  


Why main function is special give two reasons?

0 Answers  


What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 Answers   IBM,


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

1 Answers  


What are register variables? What are the advantage of using register variables?

0 Answers   TISL,


Why c is a mother language?

0 Answers  


Categories