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

int main(int argc, _TCHAR* argv[])
{    
    ShellExecute(NULL,NULL,_T(
"E:\\Projekt1.exe"),NULL,NULL,SW_SHOW);
    getchar();
    
return 0;
}

相关文章: