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 myArray[2][2] = {};
You don't need to even write the zero explicitly.