what is the difference between <stdio.h> and "stdio.h"

Answer Posted / shuvransu_banerjee

<stdio.h> is a header file which available in include
directory of the system. When we write #include<stdio.h>
preprocessor search for it in include directory directly
and not out of this directory. But when we write "stdio.h"
precessor start searching for this header file from current
directory and then in parent directories. So if we write
our own stdio.h in the current directory and include in
program as #include"stdio.h" then our header will be
included instead of system header.

Is This Answer Correct ?    313 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

760


What are the types of operators in c?

604


if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above

702


In a byte, what is the maximum decimal number that you can accommodate?

618


Why c language?

636






Explain what is the benefit of using an enum rather than a #define constant?

708


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

756


Are bit fields portable?

669


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1612


How can I find the modification date and time of a file?

596


Suggesting that there can be 62 seconds in a minute?

590


Write a program, where i have a grid with many cells, how many paths are possible from one point to other desired points.

694


What is the explanation for modular programming?

673


a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f

1578


What is the use of parallelize in spark?

568