/devspaces-c-plus-plus

A sample C++ project to showcase OpenShift Dev Spaces

Primary LanguageC++MIT LicenseMIT

About this repo

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 and make
cd math/
cmake .
make
  • using g++ compiler
cd math/
g++ -g fibonacci.cpp -o fiboncci.bin
./fibonacci.bin