Possible Duplicates:
How to initialize an array to something in C without a loop?
How to initialize an array in C
How can I zero a known size of an array without using a for or any other loop ?
For example:
arr[20] = 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0;
This is the long way... I need it the short way.