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
int arr[10][10] = {0}; // only in the case of 0