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;

posted @ 2012-10-24 09:08  94cool  阅读(224)  评论(0编辑  收藏  举报