Problem :
I am completely new to the Notepad++ and C++ programming language. I am unable to figure out that what has gone wrong in my coding, may be it might look simple to resolved to many. I tried a lot to search for the solution, but without any success. While I was trying to config my application for C++ compiler on the Windows 8.1, I encountered the following message:
NPP_SAVE: C:\Users\alecxe\Desktop\MyHelloWorld.cpp
CD: C:\Users\alecxe\Desktop
Current directory: C:\Users\alecxe\Desktop
Compiled.exe -c -w "MyHelloWorld.cpp"
CreateProcess() failed with error code 2:
The system cannot find the file specified.
================ READY ================
My C++ basic code very simple to testing only as below :
// My first hello world program in C++
#include<iostream>
using namespace std;
int main()
{
cout << "My Hello World!";
return 0;
}
The NppExec script taken as below :
NPP_SAVE
CD $(CURRENT_DIRECTORY)
Compiled.exe -c -w "$(FILE_NAME)"
Please guide me in resolving this issue.