whats the use of header file in c?
Answers were Sorted based on User's Feedback
Answer / shalini
header file constitutes all the pre defined functions that
are necessary for a program to run.hence whenever u compile
a program the compiler links all the header files into the
corresponding program and starts execution
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / prabhakar
because it consists the definations of per defined functions
...
hence it will be includes the corresponding definations of
function when ever you called the function.
| Is This Answer Correct ? | 4 Yes | 3 No |
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
what are bitwise shift operators?
What is the difference between if else and switchstatement
Explain how do you determine whether to use a stream function or a low-level function?
where does it flourished?
How can I manipulate individual bits?
what is the role you expect in software industry?
With the help of using classes, write a program to add two numbers.
What are the 3 types of structures?
How is a structure member accessed?
If input is 123 then how to print 100 and 20 and 3 seperately?
what is the difference between postfix and prefix unary increment operators?