0
Running application from cpp
when I was working with .bat files, I could open an application from within my file running, is there a way to do that with c++? and how
4 Answers
+ 9
Yeah, use CreateProcess() on Windows using Win32 API.
+ 9
I don't know, maybe fork()?
+ 8
maybe execv function
https://linux.die.net/man/3/execv
+ 1
how about for Linux?