what is the difference between #include<stdio.h> and
#include "stdio.h" ?
Answer Posted / vignesh1988i
in case of <stdio.h> this will be checking only the folder
containing C compiler...... as we will be describing the
path in the directories option in the IDE.....
in case of "stdio.h" this will be checking the entire hard
disk there by deleting the path given in the directories
explicitly .....
thank u
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
How do you construct an increment statement or decrement statement in C?
What library is sizeof in c?
Explain Function Pointer?
Explain what is the advantage of a random access file?
What are identifiers and keywords in c?
how could explain about job profile
What is #ifdef ? What is its application?
What is the correct code to have following output in c using nested for loop?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are derived data types in c?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
How do you define a function?
What is non linear data structure in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Why do we need a structure?