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 is non linear data structure in c?
Why does this code crash?
develop algorithms to add polynomials (i) in one variable
What is the use of ?: Operator?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Why does everyone say not to use gets?
Between macros and functions,which is better to use and why?
What is the difference between the local variable and global variable in c?
What are the basic data types associated with c?
What is the difference between printf and scanf )?
What is difference between function overloading and operator overloading?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
how to make a scientific calculater ?
can we implement multi-threads in c.
Explain the use of #pragma exit?