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
- php
- server
- 따라하며 배우는 C언어
- String
- Algorithm
- BFS
- Math
- C
- web
- 백준
- 정수론
- 생활코딩
- programmers
- 따라하면서 배우는 C언어
- 따배씨
- Python
- C언어
- DP
- 인프런
- Algospot
- dfs
- 종만북
- udemy
- graph
- BOJ
- sorting
- JavaScript
- BASIC
- greedy
- Cleancode
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