How do I run a program in notepad ++?



How do I run a program in notepad ++?..

Answer / Anshu Rathi

To run a C++ program in Notepad++, follow these steps: (1) Install the NppExec plugin. (2) Write your code in Notepad++ and save it with a .cpp extension. (3) In the Plugins > NppExec > Execute... dialog box, write the command to compile and run your program (e.g., g++ -o outputfile filename.cpp && outputfile). (4) Press Run.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Explain storage qualifiers in c++.

1 Answers  


when can we use copy constructor?

6 Answers   HP,


What is the iunknown interface?

1 Answers  


Implement a 2 dimensional array by one dimentional array

1 Answers   CTS,


What is binary object model?

1 Answers  


Why are pointers used?

1 Answers  


What is near, far and huge pointers? How many bytes are occupied by them?

1 Answers  


What is the equivalent of Pascal's Real a) unsigned int b) float c) char

1 Answers  


Why do you use the namespace feature?

1 Answers  


Is c++ a good beginners programming language?

1 Answers  


What is a block in c++?

1 Answers  


Difference between strdup and strcpy?

1 Answers  


Categories