This commit is contained in:
2025-05-23 03:26:13 +03:00
parent 191705c1dc
commit 4e9b002e99
14 changed files with 307 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#include <stdio.h>
#define SIZE 3
int main (void) {
int table [SIZE] [SIZE] = {{1, 8}, {2, 4, 6}, {5}};
for(size_t i = 0; i < SIZE; i++) {
for(size_t j = 0; j < SIZE; j++) {
printf("%d\n", table[i] [j]);
}
}
return 0;
}