+ 1
C++ Programmkng on Notepad??
How to do C++ programming on Notepad++... how to set compiler and how to do that all in cmd?
4 Answers
+ 7
I tried that when I started.
Try the new boston tutorial
video for cmd compile with notepad++
https://youtu.be/zLpaYVIoXqc
new boston tutorial
C++ Programming Tutorials Playlist: http://www.youtube.com/playlist?list=PLAE85DE8440AA6B83
+ 4
you need to install the GCC compiler and set it in your PATH (if you don't know how to do that Google it) then whenever you want to compile something you have to change into the directory of your cpp files (cd [directory] ) and then you compile it with g++ [cpp file(s)] -o [how you want to name your exe file]
+ 4
@Saim
You're welcome!
+ 1
thanks solved my problem