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 |
How does variable declaration affect memory?
When would you use a pointer to a function?
hi how to convert program from notepad to turboc editor can u please help me
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
Is c is a procedural language?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
why program counter is 16 bit?
Can a program have two main functions?
What is structure in c language?
What are volatile variables in c?
What is the memory allocated by the following definition ? int (*x)[10];
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?