std::array<int,4> myInts;
std::array<bool,2> myBools;
Can the elements of myInts and myBools be assumed to be false and 0, or should I fill the arrays manually?
std::array<int,4> myInts;
std::array<bool,2> myBools;
Can the elements of myInts and myBools be assumed to be false and 0, or should I fill the arrays manually?