C++调用exe程序
#include <iostream>#include <windows.h>int main(){ std::cout << "方法一" << std::endl; STARTUPINFO si = {0}; PROCESS_INFORMATION pi; char *str = "C:\\Windows\\system32\\c...