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
Distinguish between actual and formal arguments.
How can I sort a linked list?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are the benefits of organizational structure?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
What will be your course of action for a push operation?
What does c in a circle mean?
What does sizeof function do?
Explain the use of #pragma exit?
Why n++ execute faster than n+1 ?
What are the 5 types of organizational structures?
What is c++ used for today?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Why do we use null pointer?