Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

header files

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
what is the difference between .h files and .so files???
 
.h files are the header files. It will have only the declarations(function & variable) and macros.

.so files are shared objects specific to unix based platforms. It will contain the definitions (real implementation of function and variables; library functions). One important thing is that while creating the executable file from the source file these libraries will not be added to the executables.

These libraries will be loaded in to the memory in the runtime (ie, while running the executables).

Maniraja S
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top