Static vs Dynamic libraries in C!

What are they?

Creating a library:

 gcc *.c -c -fPIC
ar rcs liball.a *.o 

Using a dynamic library:

gcc -L. example.c -lholberton -o example

--

--

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