Siddiqui
Siddiqui

Reputation: 7840

Application launch from c command in window OS

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

Answers (1)

James McNellis
James McNellis

Reputation: 355267

You can use the CreateProcess Windows API function.

Upvotes: 1

Related Questions