I have one function that accesses one of the structure member .Now I want to access this member from outside my source code ,that is if I modify the initialised structure member elements my source code wont require any further compilation for this?
how to access a C structure members from outside the source code
Collapse
X
-
Originally posted by pallavidI have one function that accesses one of the structure member .Now I want to access this member from outside my source code ,that is if I modify the initialised structure member elements my source code wont require any further compilation for this?
Hi pallavid ,
Use dynamic linking.
Comment