what is the function of .h in #include<stdio.h> in c ?
Answer Posted / shashiprabha singh
.h is used for header files and stdio.h is "standard input
output header files" which hold all realtives i/p files. In
these files varias types of function r included like scanf,
printf etc.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is function prototype?
When a c file is executed there are many files that are automatically opened what are they files?
How to Throw some light on the splay trees?
Explain spaghetti programming?
Who is the founder of c language?
What are the different types of data structures in c?
How can you invoke another program from within a C program?
What is formal argument?
What are Macros? What are its advantages and disadvantages?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What is assignment operator?
Are local variables initialized to zero by default in c?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
How can you call a function, given its name as a string?