int i;if ( (fin = fopen("f1.txt","r"))==NULL){ printf("Can not open f1.txt\n"); return 0;}; //作为读,打开文件 fgets( s,1024,fin); //读一行 fclose(fin); //关文件 if ( (fout = fopen("f2.txt","w"))==NULL){ printf("Can not open f2.txt\n...
根据数据特性不同,用不同的方式,例如 整数读:fscanf(fp,"%d\n",&n);/* n是整数 */ 字符串读:fscanf(fp,"%s",str); /* str是字符串数组 */ 混合读:fscanf(fp,"%s %d ",str1,&n);整行作为字符串读:fgets(str,4096,fp);...