what information does the header files contain?
Answer Posted / shashi
In computer programming, particularly in the C and C++
programming languages, a header file or include file is a
file, usually in the form of source code, that a compiler
automatically includes when processing another source file.
Typically, programmers specify the inclusion of header files
via compiler directives at the beginning (or head) of the
other source file.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is return type in c?
How do you print an address?
Explain how do you print only part of a string?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
Is int a keyword in c?
Explain how do you list files in a directory?
What is #line?
What is the best way to comment out a section of code that contains comments?
What is C language ?
How can I make sure that my program is the only one accessing a file?
Is there a way to compare two structure variables?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is local and global variable in c?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Can we access array using pointer in c language?