How to initialize an array to something in C without a loop?
- by Ram Bhat
Hey guys..
Lets say I have an array like
int arr[10][10];
Now i want to initialize all elements of this array to 0. How can I do this without loops or specifying each element?
Please note that this question if for C