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
Is null valid for pointers to functions?
What is table lookup in c?
What is malloc() function?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
the question is that what you have been doing all these periods (one year gap)
What does *p++ do? What does it point to?
What is the return type of sizeof?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What are the restrictions of a modulus operator?
Is there anything like an ifdef for typedefs?
Explain the process of converting a Tree into a Binary Tree.
What is c++ used for today?
What is the difference between NULL and NUL?
can we change the default calling convention in c if yes than how.........?
What is the difference between typedef struct and struct?