Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 정수론
- String
- DP
- JavaScript
- BASIC
- BFS
- BOJ
- Cleancode
- graph
- greedy
- udemy
- 따라하며 배우는 C언어
- dfs
- php
- 생활코딩
- 따라하면서 배우는 C언어
- Algospot
- C
- 따배씨
- Math
- Python
- sorting
- 인프런
- C언어
- 백준
- web
- 종만북
- programmers
- server
- Algorithm
Archives
- Today
- Total
목록띠배씨 (1)
몽상실현개발주의
[따배씨] 14.14 구조체 파일 입출력 연습문제
따배씨 - 따라하며 배우는 C언어 14강 구조체_2 14.14 구조체 파일 입출력 연습문제 #include #include #define SLEN 101 struct book { char name[SLEN]; char author[SLEN]; }; void print_books(const struct book * books, int n); void write_books(const char * filename, const struct book* books, int n); struct book* read_books(const char* filename, int* n); void read_books2(const char* filename,struct book **books_dptr, int* n); int m..
Language/C
2021. 7. 4. 16:36