⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 实例2.c

📁 目录: 单元加 字符 底层编程 效验算法 数学问题 数据结构 数组 文件程序 求进制 汉诺塔 硬币情况 逆阵 问题算法 小写数字转为大写数字 其它
💻 C
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -