#include <windows.h>
#include <iostream>
using namespace std;
int main()
{
PROCESS_INFORMATION processInfo;
STARTUPINFO startInfo;
startInfo.lpReserved = NULL;
startInfo.lpDesktop = "";
startInfo.lpTitle = NULL;
startInfo.dwFlags = 0;
startInfo.cbReserved2 = 0;
startInfo.lpReserved2 = NULL;
if ( CreateProcess( NULL,
"\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" [URL unfurl="true"]http://www.cnn.com/",[/URL]
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&startInfo,
&processInfo ) == FALSE )
{
cout << endl << "CreateProcess() failed!" << endl;
}
return 0;
}