Commit 8358a328 by matjul

Upload New File

parent 4ca22eb3
Showing with 20 additions and 0 deletions
#include "stdio.h"
int main () {
int array[3][5] = {
{4, 2, 4, 2, -1},
{-3, 55, 1, 223, 2},
{2, 4, 5, 2, 1}
};
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