07-14-2005 07:12 AM
07-14-2005 08:22 AM
Why not simply speed[10][10]? This code:
int i, j, speed[10][10];
for (i = 0; i < 10; i++) {
for (j = 0; j < 10; j++) {
speed[i][j] = (i + 1) * (j + 1);
}
}
will produce this result:
07-14-2005 10:43 AM
Ok, thx.
But how can I write to / read only one element?
Thx for answering this basic c program problem. Sorry *gg*
Florian
07-14-2005 10:53 AM
07-14-2005 11:37 AM