Answer Posted / md.afzal khan
Include directory is special directory which content all the
header files of c language. Extension of header files in c
language is header. All header files only keep declaration of
functions, declaration of data type and micro constants. Body
of function i.e. function definition is not written in the
header files. Hence no one can get source code of function
like printf, clrscr etc. All the function declaration in
header file is extern. Since visibility of extern data type is
whole the program. and other file can also access such
function. Body of function of header file is supplied at the
time of linking in header file.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What kind of structure is a house?
What are linker error?
How would you rename a function in C?
How can I handle floating-point exceptions gracefully?
What are the different types of constants?
What is console in c language?
How to find a missed value, if you want to store 100 values in a 99 sized array?
Does c have circular shift operators?
shorting algorithmS
What is openmp in c?
What is new line escape sequence?
What would be an example of a structure analogous to structure c?
What is #define?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is a list in c?