what is the difference between <stdio.h> and "stdio.h"
Answer Posted / shuvransu_banerjee
<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 ? | 313 Yes | 16 No |
Post New Answer View All Answers
What is the use of clrscr?
Why is extern used in c?
What tq means in chat?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What are c preprocessors?
What are the three constants used in c?
Write a program to print fibonacci series without using recursion?
Why is sizeof () an operator and not a function?
What is difference between array and pointer in c?
What math functions are available for integers? For floating point?
What is an arrays?
Explain how can I make sure that my program is the only one accessing a file?
pierrot's divisor program using c or c++ code
what is the difference between 123 and 0123 in c?
What is function prototype in c with example?