Hello,
I currently can make a system call from within my C++ as follows:
exec("ls -l",
I want to run a more complicated program and be able to controll it from withing my C++. For example, if I run the xclock process, I cannot gain control of my program until I close the xclock window. How can I launch this xclock program and still be able to communicate with my C++ via the Unix prompt?
Thanks!!
I currently can make a system call from within my C++ as follows:
exec("ls -l",
I want to run a more complicated program and be able to controll it from withing my C++. For example, if I run the xclock process, I cannot gain control of my program until I close the xclock window. How can I launch this xclock program and still be able to communicate with my C++ via the Unix prompt?
Thanks!!