On Fri, Oct 28, 2016 at 11:27 AM, Klemens Nanni <[email protected]> wrote: > > ++argv is put on a seperate line since doing it within the execvp() call > would produce a compiler warning.
Yes, because that's invoking undefined behavior. There is no guarantee as to the order of execution of function parameters, and there are no sequence points in there.
