-
Contributing Member
Comparison of files
Does the concept of header files and library files are same. In other words is a header file same as library files. If not what is the difference between the two.
-
Contributing Member
Re: Comparison of files
Header files are files that are included in other files prior to compilation by the C preprocessor.Header files also can contain declaration of data and functions. A library is a collection of functions contained within a single file. Each library has a header file, which contains the prototypes of the functions contained within the library that may be used by a program.
-
Expert Member
Re: Comparison of files
header files are different from library files.Header files are similar to interfaces which describes some functionalies without knowing how it works but library files are similarly to implementation which tell us how the actual functionality works or how it is implemented.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules