what is the difference between <stdio.h> and "stdio.h"
Answer Posted / puneet
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 ? | 18 Yes | 13 No |
Post New Answer View All Answers
What is the modulus operator?
What are types of structure?
Give basis knowledge of web designing ...
What are called c variables?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
How can you determine the maximum value that a numeric variable can hold?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Can main () be called recursively?
What is the difference between %d and %i?
Can we increase size of array in c?
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
What do you know about the use of bit field?
What is an lvalue in c?
What is getch() function?
What is void main ()?