Ok, so I've tried messing around with c++ in the past, and actually managed to get it working. I know that I used notepad++, and I vaguely remember having to put the .cpp file into a compiler bin folder, then open said folder in cmd, and then I was able to run it. However Now i can't seem to remember what compiler I used, or how I got it to run in the first place. Please can someone please help??
P.s. Please don't suggest using codeblocks, it doesn't seem to work for me, and I hate using IDEs simply because I like doing things the old fashioned way. Thank You for taking the time to read this, and ANY help would be appreciated.
instal any command-line based compiler (Either GCC or clang works fine) then execute compiler providing path to your project and nessesary commands. Or preferably use a makefile and run make utlity. Do not execute compiler directly from a command line without use of makefile or IDE (which basicly contains make script in itself) for any real projects.
My current command line for test project (where I check and fix any code on this forum) looks like that: