I know that in C ++ there is a function
system("example.exe");
which launches another program, you need to enable it stdlib.h.
stdlib.h
Since I already include "windows.h", is there a function equivalent system()in Windows?
system()
There is CreateProcess to run a specific executable or ShellExecute to run programs or open documents with its associated program.
If portability to other platforms is generally a problem, I would stick to the system. #include stdlib.h will not kill you;)
MSDN CreateProcess
I think you are looking for CreateProcess?
Source: https://habr.com/ru/post/1718331/More articles:form_for tag for a resource with two different controllers and RESTful routing - ruby-on-railsКак вернуть список MyObject в файле помощи android? - androidJava unit test coverage numbers do not match - javaIs there a "reboot" function in Windows / C ++ - c ++Django генерирует предложения "WHERE... BENWEEN..."? - pythonInstallShield 2009 Pre install - installshieldEditText не возвращает содержимое на getText() - androidOracle Error PLS-00103. How can you check an existing record and update it or insert based on this condition? - sqldjango - using a common header with some dynamic elements - javascriptCreating CakePHP Page Using HABTM Models - phpAll Articles