Interview Questions

How can my program discover the complete pathname to the executable from which it was invoked?

C Interview Questions and Answers


(Continued from previous question...)

How can my program discover the complete pathname to the executable from which it was invoked?

argv[0] may contain all or part of the pathname, or it may contain nothing. You may be able to duplicate the command language interpreter's search path logic to locate the executable if the name in argv[0] is present but incomplete. However, there is no guaranteed solution.

(Continued on next question...)

Other Interview Questions