fill 2 dimensional array with value

Solutions on MaxInterview for fill 2 dimensional array with value by the best coders in the world

showing results for - "fill 2 dimensional array with value"
Jacopo
05 Mar 2018
1int a[100000][100000];
2std::fill((int*)a,(int*)a+sizeof(a)/sizeof(int),0);
3