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 |
Tags
- dfs
- Algorithm
- Math
- sorting
- programmers
- 정수론
- C
- 인프런
- php
- graph
- JavaScript
- 생활코딩
- BASIC
- udemy
- server
- Cleancode
- 따배씨
- C언어
- String
- Algospot
- 종만북
- greedy
- 따라하며 배우는 C언어
- BFS
- 백준
- Python
- 따라하면서 배우는 C언어
- BOJ
- web
- DP
Archives
- Today
- Total
목록띠배씨 (1)
몽상실현개발주의

따배씨 - 따라하며 배우는 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