This repository contains a copy of the The Algorithms - C++ with aditional configuration to work on Openshift Dev Spaces (Eclipse Che) VSCode based IDE.
To compile the C++ code contained in this repo just open a Terminal and
- using
cmake
andmake
cd math/
cmake .
make
- using
g++
compiler
cd math/
g++ -g fibonacci.cpp -o fiboncci.bin
./fibonacci.bin