what is the difference between #include<stdio.h> and
#include"stdio.h" ?
Answer Posted / mini bangar
when we write #include<stdio.h> preprocessor search for it in include directory directly.but when we write "stdio.h" precessor start searching for this header file from current directoryand then in parent directories.
| Is This Answer Correct ? | 25 Yes | 5 No |
Post New Answer View All Answers
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Explain the difference between ++u and u++?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
What does the error message "DGROUP exceeds 64K" mean?
What is the use of printf() and scanf() functions?
what is the height of tree if leaf node is at level 3. please explain
What is the symbol indicated the c-preprocessor?
What is c preprocessor mean?
What are 'near' and 'far' pointers?
What is a keyword?
Are the expressions * ptr ++ and ++ * ptr same?
What is a built-in function in C?
What is the use of putchar function?
What is a scope resolution operator in c?
How would you rename a function in C?