This commit is contained in:
2025-11-21 03:45:38 +07:00
parent d219cc1a7b
commit 5cbfe19d48
12 changed files with 242 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#include "func.h"
void seeMassive(wchar_t (*massive)[COL]){
printf("\t\t\tMassive\n\n[ ] ");
for(int i = 0;i<COL;i++)
printf("[%d] ",i);
putchar('\n');putchar('\n');
for(int i = 0;i<ROW;i++){
printf("[%d] ",i);
for(int j = 0;j<COL;j++){
printf("[%lc] ",*(*(massive+i)+j));
}
putchar('\n');putchar('\n');
}
printf("\n\nInput: ");
return;
}
void setMassive(int x, wchar_t (*massive)[COL]){
}
void func(int x, wchar_t (*massive)[COL]){
}