need C help
23-Mar-90 18:27:10
Sb: #95058-need C help
Fm: Mike Roth/Lattice 76566,1137
To: Thomas Holaday 70407,534
I'd recommend initializing the 3 x 3 array as:
int ar[3][3] {
{ 1, 6, 8 },
{ 7, 4, 2 },
{ 3, 9, 5 }
};
since this way it is much easier to read and to see what the programmer
intended in his code.
— Mike Roth