what is difference between #include<stdio.h> and
#include"stdio.h"
Answer Posted / ep
#include <stdio.h>
Will look for the header file in the standard include paths.
#include "stdio.h"
Will look for the file first in the current directory, then
it wil look for it in the standard include paths, if not found.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Does c have enums?
What is the difference between if else and switchstatement
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What are linked lists in c?
What is the c value paradox and how is it explained?
code for replace tabs with equivalent number of blanks
What does c mean in standard form?
What is define c?
What is the purpose of & in scanf?
What is the purpose of the preprocessor directive error?
Difference between macros and inline functions? Can a function be forced as inline?
Explain the difference between structs and unions in c?
What is the difference between #include
How can I split up a string into whitespace-separated fields?
What does the error message "DGROUP exceeds 64K" mean?