This commit is contained in:
ada-dmitry
2023-03-26 11:05:27 +03:00
parent 78387c208f
commit 522f0d0aea
27 changed files with 7 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "st_func.h"
#define N 5
int main(int argc, char *argv[]){
struct st1 q[N];
st_rand(q,N);
st_print(q,N);
return 0;
}