make a matrix of zeroes in c++ 0's code example
Example: zeros of array c++
int A[5]; // Entries remain uninitialized
int B[5]= { 0 }; // All entries set to zero
int A[5]; // Entries remain uninitialized
int B[5]= { 0 }; // All entries set to zero