How to create and use Dynamic Libraries in C language

Description of libraries

Differences between static and dynamic libraries?

Advantages and drawbacks of static and dynamic libraries

How dynamic libraries work

How to create a dynamic library

Using Dynamic Libraries (Linux)

gcc -Wall -pedantic -Werror -Wextra -L. test.c -ldynamic -o execution
export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
ldd execution
./execution

Sources

--

--

Mechanical Engineer learning software development.

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store