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
Why is extern used in c?
Distinguish between actual and formal arguments.
What is a file descriptor in c?
Where local variables are stored in c?
What is the purpose of & in scanf?
What are types of preprocessor in c?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What does char * * argv mean in c?
What are the storage classes in C?
Write a program to show the change in position of a cursor using c
Can you define which header file to include at compile time?
What is calloc malloc realloc in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
What are terms in math?