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
What is the use of sizeof () in c?
Write a C program linear.c that creates a sequence of
processes with a given length. By
sequence it is meant that each created process has exactly
one child.
Let's look at some example outputs for the program.
Here the entire process sequence consists of process 18181:
Sara@dell:~/OSSS$ ./linear 1
Creating process sequence of length 1.
18181 begins the sequence.
An example for a sequence of length three:
Sara@dell:~/OSSS$ ./linear 3
Creating process sequence of length 3.
18233 begins the sequence.
18234 is child of 18233
18235 is child of 18234
........ this is coad .... BUt i could not compleate it .....:(
#include
How does placing some code lines between the comment symbol help in debugging the code?
What is console in c language?
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
Why array is used in c?
What is a nested formula?
List some of the dynamic data structures in C?
What are terms in math?
What are the types of data structures in c?
What is the main difference between calloc () and malloc ()?
How can you avoid including a header more than once?
How can I insert or delete a line (or record) in the middle of a file?
What are valid operations on pointers?
Explain how can you tell whether two strings are the same?