MIPI_AdvancedC_FRTK/Lect1/25_page_41.c

19 lines
250 B
C
Raw Normal View History

2024-11-14 08:45:50 +03:00
#include <stdio.h>
typedef struct {
int id;
char name[20];
int group;
} student;
int main(void)
{
student s;
s.id = 1;
typedef int iarr[10];
iarr a, b, c[5];
// тоже самое int a[10], b[10], c[10][5];
return 0;
}