Ask your own question, for FREE!
Computer Science 10 Online
OpenStudy (fellowroot):

How to I assign random numbers to an 2-D array?

OpenStudy (fellowroot):

Here is my code so far. I just need to assign random number into the array. #include <stdio.h> int main(void) { int i, j, list[100][10] = { 0}; for ( i=0; i<100; i++ ) { printf ("\n"); for ( j=0; j<10; j++ ) { printf ("%6d", list[i][j]); } } getch(); return 0; } //main

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!