what is the function of .h in #include<stdio.h> in c ?
Answer Posted / dekchand sharma
.h Means header file of input output in c.
#include<stdio.h>
it means standered input output header file.
| Is This Answer Correct ? | 13 Yes | 9 No |
Post New Answer View All Answers
Explain is it better to bitshift a value than to multiply by 2?
Where can I get an ansi-compatible lint?
What are different types of variables in c?
What are the different types of endless loops?
Explain what is wrong with this program statement? Void = 10;
What is a list in c?
What is the purpose of & in scanf?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What are variables c?
What are the advantages of using linked list for tree construction?
can we change the default calling convention in c if yes than how.........?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Suggesting that there can be 62 seconds in a minute?
Is c object oriented?
When should we use pointers in a c program?