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
Which built-in library function can be used to match a patter from the string?
Explain why can’t constant values be used to define an array’s initial size?
Difference between strcpy() and memcpy() function?
Why array is used in c?
Do you know the purpose of 'register' keyword?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is function what are the types of function?
Explain pointers in c programming?
pierrot's divisor program using c or c++ code
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What is optimization in c?
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
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
int far *near * p; means
What does double pointer mean in c?