摘要:
#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 阅读全文