#include <iostream.h>
#include <windows.h> 
int main(void)
{

cout<<"Notepad will launch.\n"<<endl;
/*replace with the path to your notepad.exe*/
system("h:\\windows\\notepad.exe");

return 0;
}