#include "stdafx.h"
#include <string>
#include <windows.h>

int main()
{
char* sStr;
sStr="notepad.exe";
WinExec(sStr,SW_SHOW);
return 0;
}