I have a c program which I can launch at command prompt.
Is it possible for me the lunch this application in my another c program?
If yes, how? All the google result shows me how to do that using pthread? Will that work?
I suspect that I need a new process for my c program.
Thank you.
It is system specific, but there is commonly
execveor something like that and there is alwayssystem("/path/to/program");that you can use that is also system specific