70,008
社区成员




#include<stdlib.h>
int main()
{
system("explorer http://www.baidu.com"); //关键代码
return 0;
}
VS2010 编译测试通过。。
#include "stdafx.h"
#include <Windows.h>
int _tmain(int argc, _TCHAR* argv[])
{
ShellExecute(NULL, L"open", L"http://www.baidu.com", NULL, NULL, SW_SHOWNORMAL);
return 0;
}