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
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Can the curly brackets { } be used to enclose a single line of code?
Should a function contain a return statement if it does not return a value?
What is an auto variable in c?
What is c++ used for today?
What does c mean in standard form?
What are conditional operators in C?
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 is scanf_s in c?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is a function in c?
Is c compiled or interpreted?
What does a pointer variable always consist of?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above