diff --git a/Lesson/14.03/Project1/main.c b/Lesson/14.03/Project1/main.c new file mode 100644 index 0000000..6fd4462 --- /dev/null +++ b/Lesson/14.03/Project1/main.c @@ -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; +} \ No newline at end of file