outside of a class in main I can initialize a whole array of ints like this:
int array[20] = {0};
It works and its sets all the elements to zero. Within a class, if I try to write the same code in the constructor it doesn't accept it. How can I initialize it with out have to loop through every individual element?