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


Please Help Members By Posting Answers For Below Questions

How do I use strcmp?

645


What is define c?

576


If fflush wont work, what can I use to flush input?

619


What is f'n in math?

623


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

2651






Why should I prototype a function?

644


What is difference between static and global variable in c?

541


What is the difference between far and near ?

691


#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

776


Under what circumstances does a name clash occur?

694


When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?

811


What are the complete rules for header file searching?

680


Are there any problems with performing mathematical operations on different variable types?

577


Why c is called top down?

631


What is operator promotion?

632