what is the function of .h in #include<stdio.h> in c ?
Answer Posted / amatullah
.h is the extention of the header file
h indicates that its a header file
| Is This Answer Correct ? | 9 Yes | 2 No |
Post New Answer View All Answers
Is sizeof a keyword in c?
Why can’t constant values be used to define an array’s initial size?
c language interview questions & answer
What is the difference between array and linked list in c?
Do you know pointer in c?
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f
What is a built-in function in C?
What are the 4 types of programming language?
What is variable initialization and why is it important?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
How do you determine whether to use a stream function or a low-level function?
What is variable in c example?
What is the difference between char array and char pointer?
What are comments and how do you insert it in a C program?