Is learncpp the best resource for learning cpp?

I started looking for resources for cpp, I was/am looking for a cpp resource where I can learn all the concepts of cpp and build my foundation of programming. I do not prefer to rush the process but to enjoy it. Is learncpp the right platform for me? If yes then what's the correct approach to learn from there?

reddit.com
u/imthragg — 4 days ago
▲ 3 r/programminghelp+1 crossposts

Step by step guide to download MinGW.

  1. Firstly go to your browser and type 'minGW compiler', afterwards click on the first link which is of Sourceforge.

  2. Click on the download button, a file named mingw-get-setup.exe will be downloaded, right click on it and select 'open' to start installation process.

  3. Click install, then continue, wait for a while, click continue, select 1st, 2nd, 4th, 5th and 6th option for 'mark for installation'.

  4. Click on installation (top right corner) and select 'apply changes', after the completion close the tab.

  5. Open 'my computer', then C, then minGW, then bin and then copy the path. Go to the start, search environment variables, click on 'edit the system environment variables'

  6. Click on 'environment variables', the in the system variables part double click on the 'path', click on 'new', then paste the copied path. Afterwards click all the 'ok' options.

  7. We have installed the minGW compiler successfully, in order to verify go to start, search 'cmd' and open, type 'g++ --version' and then click enter. You'll see 'Copyright (C) 2016 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.'

All the credit goes to the yt channel 'amit thinks'.

Previously I tried to install minGW but faced problems, this time it worked so I decided to post. If there in any mistake please correct me, and forgive me I'm also a beginner.

reddit.com
u/imthragg — 5 days ago