Skip to content

Instantly share code, notes, and snippets.

View michaelkuc6's full-sized avatar

Michael Kuc michaelkuc6

  • United Kingdom
View GitHub Profile
@michaelkuc6
michaelkuc6 / C++-Style-Array.cpp
Created January 21, 2018 15:45
Example of a C++ Style Array
/* Somewhere up there */
#include <array>
using namespace std;
/* Type aliases to simplify code */
using ArrayType = int; // Or something else
using Type = ArrayType; // To make examples more 'general', ffs
const constexpr size_t arraySize = 10; //Again, just for demo