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 |
Write a program to print fibonacci series using recursion?
Difference between exit() and _exit() function?
Explain what header files do I need in order to define the standard library functions I use?
how memory store byte
What is null pointer constant?
Convert the following expression to postfix and prefix (A+B) * (D-C)
what is ur strangth & weekness
0 Answers Cognizant, LG Soft, NetEnrich,
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What does sizeof int return?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?