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
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is typedef struct in c?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
Explain modulus operator. What are the restrictions of a modulus operator?
Explain pointers in c programming?
Is c still relevant?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Why cant I open a file by its explicit path?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How can I dynamically allocate arrays?
Is it fine to write void main () or main () in c?
What are pointers? Why are they used?
Write a progarm to find the length of string using switch case?
What are the advantages of external class?
Where in memory are my variables stored?