程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> linux編程-linux中把一個磁盤文件信息復制到另一個中,總是出問題

linux編程-linux中把一個磁盤文件信息復制到另一個中,總是出問題

編輯:編程綜合問答
linux中把一個磁盤文件信息復制到另一個中,總是出問題

以下是源代碼,實現的結果是,磁盤中的信息是隔一個字符復制的,不知道為什麼,求指點,謝謝。
#include
#include
#include

main()
{
FILE *fp;
FILE *fp1;
char ch;
char filename[10];
char filename1[10];
char filepath[50];
char filepath1[100];
printf("give a file a filename: ");
scanf("%s",filename);
sprintf(filepath,"/socketTest/photo/%s",filename);
if((fp=fopen(filepath,"w+"))==NULL)
{
printf("cannot open the file <%s>\n",filename);
return 0;
}//if
ch=getchar();
printf("please input:\n");
ch=getchar();
while(ch!='#')
{
fputc(ch,fp);
ch=getchar();

}//while

fclose(fp);

printf("give another file a filename: ");
scanf("%s",filename1);
ch=getchar();
sprintf(filepath1,"/socketTest/photo/%s",filename1);

if((fp1=fopen(filepath1,"w+"))==NULL)
{
printf("cannot open the file <%s>\n",filename1);
return 0;
}//if
printf("the length of %s is %d\n",filename1,strlen(filepath1));
if((fp=fopen(filepath,"r"))==NULL)
{
printf("cannot open the file <%s>\n",filename);
return 0;
}//if

while(fgetc(fp)!=EOF)
{
printf("%c",fgetc(fp));
fputc(fgetc(fp),fp1);

}

fclose(fp1);
fclose(fp);
printf("\n file %s is ok!\n",filename1);

}//main

最佳回答:


下面的代碼使得字符指針fp一共向前移動了3次,不跳反而不正常了。

while(fgetc(fp)!=EOF)
 {
 printf("%c",fgetc(fp));
 fputc(fgetc(fp),fp1);
 }

fgetc(fp)調用了3次...

1樓正解.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved