C中访问文件

既然,我们将与它共存,C的文件访问方式,还是值得注意的。
 
#include<stdio.h>
int main()
{
 FILE  *p1,*p2;
 char c;
 p1=fopen("C:\\hello.txt","r");
 p2=fopen("C:\\fengyu.txt","w");
 while(!feof(p1))
 {
  printf("%c",fgetc(p1));
 }
 fseek(p1,0,0);
 while((c=fgetc(p1))!=EOF)
 {
  fputc(c,p2);
}
 fclose(p2);
 fclose(p1);
 return 0;
}

你可能感兴趣的:(fopen)