what is the difference between <stdio.h> and "stdio.h"
Answer Posted / vishal
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 ? | 38 Yes | 8 No |
Post New Answer View All Answers
Can a variable be both const and volatile?
What are reserved words with a programming language?
Explain what does a function declared as pascal do differently?
Why c is called a mid level programming language?
What is %d used for?
What is a good data structure to use for storing lines of text?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is the difference between fread and fwrite function?
What does the format %10.2 mean when included in a printf statement?
What are the benefits of organizational structure?
What is a header file?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What language is windows 1.0 written?
What is a dynamic array in c?