#include struct student { char name[8]; int hakbun; float grade; }; struct student s1 = { "홍길동",2020006,3.2 }; struct student s2 = { "임꺽정",2020004,2.7 }; struct student s3 = { "이순신",2020002,4.3 }; struct student s4 = { "김유신",2020001,3.3 }; struct student s5 = { "강감찬",2020003,3.8 }; struct student s6 = { "김선달",2020005,1.5 }; struct student* student[6] = { &s1,&s2,&s3,&s4,&s5,&s6 }; struct student..