c++执行外部程序

#include "stdafx.h"
#include <windows.h>
#include <shellapi.h>//ShellExecute 要引用的库

int main(int argc, _TCHAR* argv[])
{    
    ShellExecute(NULL,NULL,_T("E:\\App\\test\\test\\bin\\Debug\\test.exe"),NULL,NULL,SW_SHOW);//双斜杠
    return 0;

原文地址:https://www.cnblogs.com/94cool/p/2736551.html