Answers for "Fill 2-dimensional array with value"

C++
0

Fill 2-dimensional array with value

int a[100000][100000];
std::fill((int*)a,(int*)a+sizeof(a)/sizeof(int),0);
Posted by: Guest on May-05-2021

Code answers related to "Fill 2-dimensional array with value"

Browse Popular Code Answers by Language