what information does the header files contain?
Answer Posted / naveena
header file is a file containing C declarations and macro
definitions to be shared between several source files
| Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
How is a null pointer different from a dangling pointer?
How is null defined in c?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Is it possible to execute code even after the program exits the main() function?
Explain 'bit masking'?
Is anything faster than c?
What is string function in c?
Difference between strcpy() and memcpy() function?
What is extern c used for?
Why main function is special give two reasons?
What is the use of linkage in c language?
How do we make a global variable accessible across files? Explain the extern keyword?
What does calloc stand for?
How are structure passing and returning implemented?