notepad++ problems

could someone explain to me what is going on here

NPP_SAVE: new 1
cd**
CreateProcess() failed with error code 2:
The system cannot find the file specified.

g++ *test.cpp* -o test
Process started >>>
g++: error: *test.cpp*: Invalid argument
g++: fatal error: no input files
compilation terminated.
<<< Process finished. (Exit code 1)
NPP_RUN: test
- the specified file was not found
================ READY ================

also when I try to open nppexec manual it just shows nothing.there are all these topics and subtopics but if I want to see whats inside those it just shows a blank screen
Hi.

You need to have the code file (in your case test.cpp) in your current working directory. If the code file is in a different directory, you need to specify where the file is located in the command.
you mean from nppexec?

npp_save
cd*$(CURRENT_ DIRECTORY)*//this part here?
g++ *$(FILE_NAME)* -o $(NAME_PART)
NPP_RUN $(NAME_PART)
can you help me with this too?
#include <iostream>

using namespace std;

int main()
{float x,y,z;
cout<<"care este valoarea laturii x a triunghiului?";
cin>>x;
cout<<"care este valoarea laturii y a triunghiului?";
cin>>y;
cout<<"care este valoarea laturii z a triunghiului?";
cin>>z;
if(x=y=z) cout<<"triunghiul este echilateral";
else if(x=y)||(x=z)||(y=z) cout<<"triunghiul este isoscel";
else if(x^2=y^2+z^2)||(y^2=x^2+z^2)||(z^2=x^2+y^2) cout<<"triunghiul este dreptunghic";



return 0;
}
@queen13 please don't hijack someone else's thread with your own question. Start your own thread instead.
http://www.cplusplus.com/forum/beginner/223010/
Topic archived. No new replies allowed.