Typedef struct s_list { void *content; struct s_list *next; // 이렇게 구조체 내에 똑같은 구조체 형식으로 다음 구조체를 가리키면 연결리스트라고 부름. } t_list; Typedef : 구조체의 별칭을 만들어주겠다. struct:구조체를 만들 것이다. 예제 1 Struct Person{ char name[20]; int age; char address[100]; } Int main() { struct Person p1; strcpy(p1.name, “홍길동”); p1.age = 30; strcpy(p1.address, “서울시 용산구 한남동”); printf(“이름 : %s \n”, p1.name); … } 요론 식으로. 예제2 Typedef struct..