restructure

This commit is contained in:
ada-dmitry
2023-09-29 15:18:13 +03:00
parent 6809e2ef5f
commit 04ba81cfb3
18 changed files with 866 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
#include <time.h>
#define N 10
#define n 100
void init_matr(int c, short int mat[c][c]);
void out_matr(int c, short int mat[c][c]);
void trans(int c, short int mat[c][c]);