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
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are Macros? What are its advantages and disadvantages?
Explain what is the benefit of using an enum rather than a #define constant?
What are different storage class specifiers in c?
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
How many keywords are there in c?
What do you mean by c what are the main characteristics of c language?
What is the correct code to have following output in c using nested for loop?
Mention four important string handling functions in c languages .
What is else if ladder?
What are the rules for the identifier?
What does static variable mean in c?
What are pragmas and what are they good for?
What is wrong with this code?