zeros of array c++

C++
int A[5]; // Entries remain uninitialized
int B[5]= { 0 }; // All entries set to zero
Source

Also in C++: