Can C language libraries (static or dynamic) call other libraries (static or dynamic)

how can it be realized? is there such a need in the real world?

C
Feb.26,2021

of course, take your most familiar example, you wrote a library, called the printf function, this function is in the C standard library, the standard library is also a library.

so, of course, there are requirements, especially in the open source world, because people don't like to repeat wheels, one needs some functionality when writing a library, and others have already written it, so use it. This calls other libraries

Menu