what is the function of .h in #include<stdio.h> in c ?
Answer Posted / victor chatterjee
.h is that extension in which the library files are being
saved. such as stdio.h, conio.h, iostream.h. it is the
header file which includes all the standard input output
functions.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain how can type-insensitive macros be created?
Why c is called a middle level language?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
What is getche() function?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
Explain how can you avoid including a header more than once?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Write a code of a general series where the next element is the sum of last k terms.
How can I find out how much free space is available on disk?
How can I direct output to the printer?
What is the stack in c?
What is hungarian notation? Is it worthwhile?
What are terms in math?
What is a node in c?
How to establish connection with oracle database software from c language?