what is the function of .h in #include<stdio.h> in c ?
Answer Posted / bhanudas
#include<stdio.h> mean standered input / output header
file.
This preprocessor directive tell the compiler I am
including my program in your header file.
It also called as preprocessor command or header file .
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How do you use a 'Local Block'?
Write a factorial program using C.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is the use of typedef in structure in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
show how link list can be used to repersent the following polynomial i) 5x+2
What is this infamous null pointer, anyway?
Why is c used in embedded systems?
What is the symbol indicated the c-preprocessor?
What is c++ used for today?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What are two dimensional arrays alternatively called as?
How pointers are declared?
What is the significance of an algorithm to C programming?