35강. 구조체 *구조체 : 여러 변수들을 모아서 하나의 객체를 구성할 때 사용하는 사용자 정의 타입 객체 *구조체 구성 struct 구조체명 { 멤버변수1; 멤버변수2; } *구조체 정의 및 사용 struct person { char *name; int age; }; struct person user1; user1.name = "h user"; printf("%s", user1.name);//h user (문자열 출력) struct person { char *name; int age; } test; test.name = "h user"; test.age = 40; printf("%s : %d", test.name, test.age);//h user, 40 struct person { char *name..