With C++11 std::array, do I have the guarantee that the syntax std::array x; will default-initialize all the elements of the array ?
std::array
std::array x;
C++11 std::array::fill is a good option for some cases.