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
Explain about block scope in c?
What does printf does?
What are the 5 elements of structure?
which is an algorithm for sorting in a growing Lexicographic order
What are reserved words with a programming language?
What is data structure in c language?
What are the 4 types of organizational structures?
What is the advantage of an array over individual variables?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
What is a floating point in c?
Why flag is used in c?
Can you define which header file to include at compile time?
When can you use a pointer with a function?
What is a void pointer in c?
Explain the concept and use of type void.