구조체와 구조체포인터 구조체 구조체 정의 - 서로 다른 타입의 멤버라고 하는 값들의 통합 자료형 - 사용자 정의 타입 * cf ) 배열 : 같은 타입의 데이터 모임 구조체 선언 #include // 변수 아니고 멤버 struct SCORE { char name[20]; int kor; int math; int eng; float avg; }; int main() { // 구조체 변수 struct SCORE st1 = {"홍길동", 50, 78, 95}; printf("%d, %d \n", sizeof(st1), sizeof(struct SCORE)); printf("&st1 : %p, %p\n", &st1, st1.name); st1.avg=(st1.kor+st1.math+st1.eng) / (float..