what is the function of .h in #include<stdio.h> in c ?
Answer Posted / nitesh vashist
.h is only giving indication that it is a header file.
only two types of files in c .c and .h.
if we copy stdio.h file as stdio then it will work we can
use stdio file instead of stdio.h. it will work definitely...
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
develop algorithms to add polynomials (i) in one variable
In c language can we compile a program without main() function?
Does free set pointer to null?
What are actual arguments?
Is fortran still used today?
Explain what does the format %10.2 mean when included in a printf statement?
FILE PROGRAMMING
What is a list in c?
Explain the Difference between the New and Malloc keyword.
What is a sequential access file?
What's a good way to check for "close enough" floating-point equality?
Are pointers really faster than arrays?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
praagnovation
Write a program to reverse a linked list in c.