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

Submitted by: Administrator
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.
Submitted by: Administrator

Read Online C Programming Job Interview Questions And Answers