일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- swift animation
- backgroundColor
- randombackgroundcolor
- 한국어 설정
- date picker
- Storyboard
- CountDownTimer
- 프로젝트기획
- datepicker
- IOS
- valueChanged
- color animate
- motivation
- SWIFT
- 오늘의조언
Archives
- Today
- Total
목록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함수를 제외한 함수는 이렇게..
C언어
2023. 9. 27. 15:52