I've got a compiled executable file called "starTracking", and I need to use another c++ program to run this file. Right now I'm using:
system("./starTracking");
But I can't wait it to finish before calling it again, so I'd like it to run apart from my main program so I can call it several times without making my main program wait. Could someone tell me if there's a way to do it? I'd be so grateful :D