how to define an array of zero elements in c++ 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