구조체와 배열

// 멤버 가정: int id; char name[10]; double score;
/*
struct 태그 변수[인덱스] {
	{값 등등}
	{값 등등}
};
*/
struct student[2] {
	{2017101182, "gunwoo", 100.0}
	{2017101181, "mutsin", 95.0}
};