728x90
<연결 리스트 공부>
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 _Student{
int age;
char phone_number[14];
} Student;
Int main()
{
Student goorm;
printf(“%d %s”, goorm.age, goorm.phone_number);
…
}
Struct _Student = Student 로 바꿔주는 것이 typedef 이다.
728x90
'LANG > C' 카테고리의 다른 글
파일 디스크립터 공부 (0) | 2021.06.13 |
---|