what is difference between #include<stdio.h> and
#include"stdio.h"
Answer Posted / jeke kumar gochhayat
in #include<stdio.h> , stdio.h is a predefined header file
in the include directory.
but in #include"stdio.h" is a userdefined header files
but functions are same
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What language is c written?
Why c is a procedural language?
What is an arrays?
Are there any problems with performing mathematical operations on different variable types?
Can you pass an entire structure to functions?
What is the maximum length of an identifier?
What is d'n in c?
What is #define size in c?
What is 2 d array in c?
Are local variables initialized to zero by default in c?
What standard functions are available to manipulate strings?
What is the auto keyword good for?
Is c procedural or object oriented?
What is the method to save data in stack data structure type?
Why does everyone say not to use scanf? What should I use instead?