Magic squares of doubly even order: Difference between revisions

Content deleted Content added
m →‎{{header|C++}}: don't need to value initialize if we are going to overwrite it anyway
Line 49: Line 49:
while( d % 4 > 0 ) { d++; }
while( d % 4 > 0 ) { d++; }
sz = d;
sz = d;
sqr = new int[sz * sz]();
sqr = new int[sz * sz];
fillSqr();
fillSqr();
}
}