#include #include int** zerosMat(int h, int w){ int** arr = (int**)malloc(h*sizeof(int*)+1); if(arr==NULL)return NULL; for(int i=0;i