Hi!
Here's my code:
for(i=0;i<N;i++)
{
for(j=0;j<M;j++)
printf("%4.2f ",mat[i][j]);
printf("\n");
}
I want it to look like this:
68.85 52.25 32.00
-100.00 -632.25 -26.56
Instead I get:
68.85 52.25 32.00
-100.00 -632.25 -2.56
For life of me I can't remember how to get th alignment right.
Anyone?
Thanks