mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 09:10:14 +00:00
11 lines
143 B
C
11 lines
143 B
C
#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;
|
|
} |