what is the difference between <stdio.h> and "stdio.h"
Answer Posted / ranjan kumar sharma
<stdio.h is a header file which availabel 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 ? | 1 Yes | 0 No |
Post New Answer View All Answers
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
How can you tell whether a program was compiled using c versus c++?
What is hashing in c language?
how can f be used for both float and double arguments in printf? Are not they different types?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Write a program for Overriding.
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
Write the syntax and purpose of a switch statement in C.
What is #include called?
What is context in c?
Tell me what are bitwise shift operators?
Explain what is the difference between functions getch() and getche()?
What is the significance of scope resolution operator?
What is the use of sizeof () in c?
Why do we use int main?