what is the function of .h in #include<stdio.h> in c ?
Answer Posted / vignesh1988i
this is called as a header file..... like .txt in
editors.... in this this header file dosent belong to the C
code..... the meaning of this is in this .h files all
functions will be writtern .............. eg. string
fun(),I/O fun(),getch(),clrscr(),math functions() ...... etc
... etc
| Is This Answer Correct ? | 25 Yes | 5 No |
Post New Answer View All Answers
How can you pass an array to a function by value?
What is sizeof int?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
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);
List some basic data types in c?
Between macros and functions,which is better to use and why?
Why is it that not all header files are declared in every C program?
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.
What are the types of data types and explain?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
What is the purpose of sprintf() function?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
Write a program to print factorial of given number without using recursion?
How can I sort a linked list?
What are derived data types in c?