Question-
bool isAllZeros (int a[50][100]);
Implement the function "isAllZeros" that uses a loop nested inside another loop to determine whether a two-dimensional array contains only zeros.
The array passed into the function will have 50 rows and 100 columns.
You have to find a two-dimensional array contains only zeros.