Fizix
2010-07-05 06:03:59 UTC
Is there any syntax of calling a library-defined function from a user defined function, except main().
For example, I have a user defined function user() and need to call a library defined function, say lib(). Now as I found, it is possible to call lib() directly from main(), but calling it from user() shows compilation errors.
Isn't there some technique to call lib() directly from user()? Please reply.
PS: lib() and user() are hypothetical functions, mentioned just for explaining the situation.