I can start a process from an executable with arguments via a C++ program like this:
system("file.exe arguments")
Given a specific process (and the process that called this process (possibly via system()
), if required), is there any way to find out the argument it has been called with (or, in other words, the way it has been called)?