3.3 read, write 파일을 열고 난 후에 데이터를 쓰거나 읽어올 때는 read와 write 함수를 사용합니다. // ex_read_write.c #include #include #include #include #define MAX_TIT_LEN 100 #define MAX_AUT_LEN 20 #define DUMMY_FNAME "dummy" typedef struct _Book Book; struct _Book { char title[MAX_TIT_LEN+1]; char author[MAX_AUT_LEN+1]; int num; }; void TestWrite(); void TestRead(); int main() { TestWrite(); TestRead(); return 0; } void Te..