实例2.c

来自「几个用c语言写的关于文件的操作的源程序。」· C语言 代码 · 共 32 行

C
32
字号
#include <stdio.h>
#include <stdlib.h>

main()
{
    FILE *in,*out;
    char ch,infile[10],outfile[10];
    printf("Enter the infile nmae:\n");
    scanf("%s",infile);
    printf("Enter the outfile name:\n");
    scanf("%s",outfile);
    
    if( (in=fopen(infile,"r") )==NULL)
    {
    	printf("cannot open infile\n");
    	exit(0);
    }
    if( (out=fopen(outfile,"w") )==NULL)
    {
    	printf("cannot open outfile\n");
    	exit(0);
    }
    
    while( ! feof(in) )  fputc(fgetc(in),out);
    
    fclose(in);
    fclose(out);
}

    
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?