mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 01:00:15 +00:00
9 lines
127 B
C
9 lines
127 B
C
|
|
struct st1{
|
|
int i;
|
|
char s[128];
|
|
};
|
|
|
|
void st_rand(struct st1 temp[], int n);
|
|
void st_print(struct st1 temp[], int n);
|
|
|