answersLogoWhite

0


Best Answer

EX: pgm

#include<stdio.h>

main()

{

printf("haiii");

}

Header file:

(1) contains the function(printf) declaration

(2) during preprocessing, the printf function is replaced by the function declaration

Library file :

(1) contains the function(printf) definition

(2) during linking, the function declaration is replaced with the function definition.obviously, everything will be in object while linking

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

A library is a binary excecutable that contains a collection of related functions, classes and type definitions. A header is a plain-text file that contains declarations and definitions, and provides the interface to a library or source file where the implementations can be found.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Difference between library file and header file?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between program and programing?

the program contains the which are coding like as our header file ,void main,library function etc.


What is the difference between using angular brackets in C language and double quotes in Cpp language to enclose header files?

When you includes any header file using "" that time compiler try to locate this file first from your program's local directory and then from library. But if you include the .h file using &lt;&gt; then compiler assumes you are including some library file.


How do you find out the name of a library file of its corresponding header file?

i can't answer it


What is the header file for string library function?

string.h


Is header file the library file?

No. Header files are those which contains declaration part of function &amp; library files are those which contains definition part of function. These are those functions which we called in our program by using header files.


What is the difference between the header file and the preprocessor directive in programming language cpp?

pata nhn


How is a library file incorporated in a C program?

Every library requires a header file (.h file) that can be included in any translation unit that requires access to the library. The header describes the library interface. The library implementation may be provided by a corresponding .c source file in which case you can compile the library into your program just as you would any other translation unit. However, most library implementations are provided by a precompiled library file (.lib file) and you generally won't have access to the source file. The precompiled library file is required by the linker while the corresponding header is required by the compiler.


What is the different between header file and header pointer?

Header file is a file which is meant to be included into another file during compilation. Examples: string.h, stdio.h, inttypes.h. Header pointer is a pointer to an object called header (for example header of a linked list).


What is the importance of header file?

A header file is a library of a no. of functions, which could be used (once or more than once) in some or the other programs. Thus, instead of defining all functions separately we can assemble them in a single library, the header file. These can be predefined or user defined. Hence, it reduces the line of codes and also the complexity.


How can i add the Dhcpsapi library in code blocks IDE?

Link your project to the dhcpsapi.lib library file and include the dhcpsapi.h header file in all translation units that make use of the library.


Difference between header file and library file?

A header file is normally used for declarations to provide an interface that can be included into a source file that wants to use the functions/variables that have been declared. If the header file contains function prototypes, it will usually have a corresponding source file that defines the functions. /* example.h */ #define bTRUE 1 #define bFALSE 0 typedef int BOOL BOOL bEvenNumber(unsigned int uiNumber); /* example.c */ #include "example.h" BOOL bEvenNumber( unsigned int uiNumber) { return (uiNumber &amp; 1) ? bFALSE : bTRUE; }


What is a header file and library function?

header files are predefined in c, they include the all necessary function to u to do your work easy instead of writing a function for printing a message or to read a input form key board we are using the library functions which are in the header files. there are different types of header files depending upon the requirement we use them.