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
How do I read the arrow keys? What about function keys?
What does 3 periods mean in texting?
What is a struct c#?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
code for quick sort?
How can I write a function that takes a format string and a variable number of arguments?
What is self-referential structure in c programming?
What is binary tree in c?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Can we replace the struct function in tree syntax with a union?
Explain what is the concatenation operator?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Differentiate between null and void pointers.
How can I use a preprocessorif expression to ?
What is NULL pointer?