C++ 20 Lessons and Snippets
For compiling the code we need a C++ compiler.
- Windows: install MinGW
- MacOS: install XCode tools package
- linux:
- Fedora, Red Hat, CentOS: yum groupinstall 'Development Tools'
- Debian, Ubuntu: $ sudo apt-get update
$ sudo apt-get install build-essential manpages-dev
- g++ filename.cpp -o outputname
- ./outputname