摘要: #include #include void main(){ FILE *pFile = fopen("a.txt", "w"); char str[] = "你想要输入的字符串 "; fwrite(str,1, sizeof(str)/sizeof(str[0]), pFile); fclose(pFile); system("notepad a.txt");}全盘搜索文件#include#includevoid FindFile(char* ,char* );int count=0;//统计文件数char fn 阅读全文
posted @ 2013-10-24 19:16 cnsealine 阅读(209) 评论(0) 推荐(0) 编辑