fillZero method

void fillZero()

Implementation

void fillZero() {
  for (int i = 0; i < 10; i++) {
    h[i] = 0;
  }
}