C++ Notes: Array Initialization has a nice list over initialization of arrays. I have a
int array[100] = {-1};
expecting it to be full with
C++11 has another (imperfect) option:
std::array a; a.fill(-1);