difference between header file and library file
|
Light Poster
|
|
| 24Dec2005,15:24 | #1 |
|
May anyone tell me about the difference between header file and library file in c/c++
|
|
Go4Expert Founder
|
![]() |
| 24Dec2005,20:08 | #2 |
|
You have posted in the wrong forum and I have moved the thread to the correct forum.
Normally in header file the function / Class definitions exist and in lib files the implementation of the functions reside. |
|
Light Poster
|
|
| 25Dec2005,10:58 | #3 |
|
Thanks 4 help. may u tell me in depth about it?
|
|
Go4Expert Founder
|
![]() |
| 25Dec2005,14:16 | #4 |
|
Depth about it can be explained with an example.
Lets we define a Class A in file a.h and its function definition lies in a.cpp Then when you compile and create the library the definition of function lies in the .h files and the implementation lies in the lib files. Like say iostream.h files hold the function signatures of the function and the corresponding lib files has the actual implementation of the function. Last edited by shabbir; 25Dec2005 at 18:48.. |

