C언어1 구조체로 주소록 프로그램 구현하기 (C언어) 코드 설명struct List{ char name[20]; char phone[13]; char address[50]; char birth_of_date[8];};구조체 연습을 위해 다른 사람의 코드를 참고하지 않고 구조체를 활용해서 코드를 짜는 것에 초점을 맞추었습니다. int AddInfo(struct List *li, int *cnt);int PrintEveryInfo(struct List *li, int cnt);int SearchInfo(struct List *li, int cnt);int DeleteInfo(struct List *li, int *cnt);main함수를 제외한 함수는 이렇게 4가지이다.순서대로 등록, 출력, 검색, 삭제 기능을 한다.AddInfo 함수와 D.. 2023. 9. 27. 이전 1 다음