Commit 4ca22eb3 by matjul

Upload New File

parent fccbec30
Showing with 22 additions and 0 deletions
#include "stdio.h"
#include "stdlib.h"
int main () {
int array[3][5];
for(int i = 0; i < 3; i++){
for(int j = 0; j < 5; j++){
array[i][j] = rand() % 500 ;
}
}
for(int i = 0; i < 3; i++){
for(int j = 0; j < 5; j++){
printf("%d, ", array[i][j]);
}
printf("\n");
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment