what is the function of .h in #include<stdio.h> in c ?
Answer Posted / bhawani shankar
accrding to my view simply we can say #include<stdio.h> is
a header file .this is include all standered input output of c
.h is used in this syntex is represents the link about the
header file (.h)
we also write syntex #include<stdio.h> is
#include"stdio.h" the .h shows that this is a header file..
Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
What is ponter?
How old is c programming language?
can we change the default calling convention in c if yes than how.........?
What are the Advantages of using macro
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Here is a neat trick for checking whether two strings are equal
How to compare array with pointer in c?
write a c program for swapping two strings using pointer
What does != Mean in c?
Why do we use int main?
Explain spaghetti programming?
How can I find out how much free space is available on disk?
Can a pointer be volatile in c?