This commit is contained in:
ada-dmitry
2023-04-02 21:25:54 +03:00
parent 41df1f120a
commit fec3e50d45
6 changed files with 2 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;
}