I want to call one command(user defined) from C program(Windows) -


I want to call a command (user-defined) from C program (windows) Can you tell me the function available?

system () is the simplest way to call external programs.

This is a case of doing something:

  system ("runme.exe");  

There are many process control calls in the Win32 API, which give you better control and monitoring.

and look for his brothers

Comments