libourown.so
provides function f
definition
After execution of gcc command,
gcc a.o libourown.so.1 -o app
1)
Does libourown.so
get linked to app
at runtime , when f
is called in app
? or Does libourown.so
gets linked to app
at build time?
2)
Does libc.so
get linked at runtime to app
, after printf
is called in app
? or Does libc.so
gets linked to app
at build time?