hello am trying to start another exe from my c program , am usign createprocess() but am getting error that , the commond is not recognized as internal or external
STARTUPINFO startupInfo = {0};
startupInfo.cb = sizeof(startupInfo);
PROCESS_INFORMATION processInformation;
CreateProcess(
bpath, // bpath is char and have C:\myf\myapp.exe
NULL,
NULL,
NULL,
FALSE,
NORMAL_PRIORITY_CLASS,
NULL,
NULL,
&startupInfo,
&processInformation
);