what is the function of .h in #include<stdio.h> in c ?
Answer Posted / george mwenyeheri
stdio... stands for Standard Input Output library.. and the
".h" is the header file extension.. as in when u save a text
file the extension you give is .txt.. similarly we give .h
extension to the header file named stdio.. hope u are
comfortable with <stdio.h> .
Now lets concentrate on #include.. # is the pre processor
directive.. this is just to direct the pre processor to
'include' all the files contained in the <stdio.h> file
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What are the functions to open and close file in c language?
How pointers are declared?
What is extern variable in c with example?
Write a program to print fibonacci series without using recursion?
Explain how do you determine whether to use a stream function or a low-level function?
Why doesn't C support function overloading?
what is the difference between class and unio?
Are pointers really faster than arrays?
Which one would you prefer - a macro or a function?
Is array a primitive data type in c?
What are the 4 types of programming language?
What is a floating point in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is string constants?