struct STU{
char name[30];
int id;
} s;
이러한 구조체 정의 다음에 struct STU a[10]; 이런식으로 배열형식의 변수도 선언할 수 있는건가요? 궁금합니다!