Dynamic Library: Create the Client
Learn how to link a client to a dynamic library.
Create the client
In the client
, we are using the factorial( )
function present in the dynamic library. A prototype of this function is available in lib_dyanmic.h
, present in a different project. We have provided the source code for the dynamic library and client program. When you press the RUN button, it will automatically create the shared object of the dynamic library that can be linked with other objects and open the terminal for you. ...