Compiler setup
C++ compiler setup on Linux Mint:
Run these commands in terminal:
sudo apt update && sudo apt upgrade
sudo apt install build-essential
Check if g++ (our c++ compiler) is installed by running:
g++ --version
It should print something like this:
g++ ...
csm.hashnode.dev1 min read