How do I quickly erase an array?

This might be simple C++ command or procedure, but how does one erase an array quicker than this?
- Code: Select all
for (i1=0; i1<10; i1++)
for (i2=0; i2<10; i2++)
for (i3=0; i3<10; i3++)
array[i1][i2][i3]=0;