Reputation: 7840
I want to make an console application of c which can run other applications (exe files). Kindly guide me how can I make it possible so that from my c code i can run other executable files in window OS.
Upvotes: 0
Views: 124
Reputation: 355267
You can use the CreateProcess Windows API function.
CreateProcess
Upvotes: 1