// std::array is a container that encapsulates fixed size arrays.
#include <array>
using namespace std;
array<int, 100> ref = { 0 };
// std::array is a container that encapsulates fixed size arrays.
#include <array>
using namespace std;
array<int, 100> ref = { 0 };