2016年5月1日

C语言 文件操作9--fgetc()和fputc()

摘要: //fgetc()和fputc() #define _CRT_SECURE_NO_WARNINGS #include #include #include //文本写文件 int writeWord(const char *path,const char *pword){ int ERRO_MSG = 0; int i = 0; if (path == NULL) ... 阅读全文

posted @ 2016-05-01 09:37 寒魔影 阅读(470) 评论(0) 推荐(0)

C语言 文件操作8--fputs()和fgets()

摘要: //fputs()和fgets() #define _CRT_SECURE_NO_WARNINGS #include #include #include //文本写文件 int writeWord(const char *path,const char *pword){ int ERRO_MSG = 0; if (path == NULL) { ERR... 阅读全文

posted @ 2016-05-01 08:46 寒魔影 阅读(302) 评论(0) 推荐(0)

导航