what is the function of .h in #include<stdio.h> in c ?
Answer Posted / rajan
# 8
accrding to my view simply we can say #include<stdio.h> is
a header file .this is include all standered input output of c
.h is used in this syntex is represents the link about the
header file (.h)
we also write syntex #include<stdio.h> is
#include"stdio.h" the .h shows that this is a header file..
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
a value that does not change during program execution a) variabe b) argument c) parameter d) none
Can the sizeof operator be used to tell the size of an array passed to a function?
Can a local variable be volatile in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Give me the code of in-order recursive and non-recursive.
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
Differentiate between functions getch() and getche().
Why can arithmetic operations not be performed on void pointers?
What is the default value of local and global variables in c?
regarding pointers concept
What is context in c?
How can I get the current date or time of day in a c program?
Why is C language being considered a middle level language?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Is it better to bitshift a value than to multiply by 2?