what is the function of .h in #include<stdio.h> in c ?
Answer Posted / meena
it is a header file.it stands for"standard input and
output"file.if you want to give any input to the computer
or if you want to recieve any output from the computer
(printf,scanf)this header file must be used.
| Is This Answer Correct ? | 35 Yes | 5 No |
Post New Answer View All Answers
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What is a program flowchart?
What is the difference between volatile and const volatile?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
What is the difference between constant pointer and constant variable?
How can you convert integers to binary or hexadecimal?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
What is %g in c?
Write a program to check armstrong number in c?
Explain how do you list a file’s date and time?
What are header files in c programming?
Differentiate between Macro and ordinary definition.
What is the significance of c program algorithms?
What does c mean?
What are dangling pointers? How are dangling pointers different from memory leaks?