Do std::array elements have to be reset?

Viewed 2331
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?

1 Answers
Related