zoukankan      html  css  js  c++  java
  • 数据文件——之复制文本文件

    代码:

     1 //This is c program code!
     2 /* *=+=+=+=+* *** *=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
     3   * 文档信息: *** :~/WORKM/stutyCode/cCode/recipesProblemSolution/chapter06/test6_17.c
     4   * 版权声明: *** :(魎魍魅魑)MIT
     5   * 联络信箱: *** :guochaoxxl@163.com
     6   * 创建时间: *** :2020年11月22日的上午10:09
     7   * 文档用途: *** :数据结构与算法分析-c语言描述
     8   * 作者信息: *** :guochaoxxl(http://cnblogs.com/guochaoxxl)
     9   * 修订时间: *** :2020年第46周 11月22日 星期日 上午10:09 (第327天)
    10   * 文件描述: *** :自行添加
    11  * *+=+=+=+=* *** *+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/
    12 #include <stdio.h>
    13 
    14 void resultOpen(FILE *fPtr){
    15     if(fPtr == NULL){
    16         printf("File opening failed.
    ");
    17         return;
    18     }
    19     printf("File opening successfully.
    ");
    20 
    21     return;
    22 }
    23 
    24 void closeState(FILE *fPtr){                                                            
    25     int clo = fclose(fPtr);
    26     if(clo == -1){
    27         puts("file-closing failed.");
    28     }
    29     if(clo == 0){
    30         puts("file-closing successfully.");
    31     }
    32 }
    33 
    34 int main(int argc, char **argv)
    35 {
    36     FILE *fPtrSource = fopen("satara.txt", "r");
    37     resultOpen(fPtrSource);
    38     
    39     FILE *fPtrTarget = fopen("town.txt", "w");
    40     resultOpen(fPtrTarget);
    41 
    42     int ch = fgetc(fPtrSource);
    43     while(ch != EOF){
    44         fputc(ch, fPtrTarget);
    45         ch = fgetc(fPtrSource);
    46     }
    47     puts("");
    48     puts("File copied successfully.
    ");
    49 
    50     closeState(fPtrSource);
    51     closeState(fPtrTarget);
    52 
    53     return 0;
    54 }
  • 相关阅读:
    单词接龙
    字符串,字符数组
    马的遍历
    约瑟夫问题
    扫雷游戏
    寻找道路
    传纸条
    数的划分
    火柴棒等式
    火星人
  • 原文地址:https://www.cnblogs.com/guochaoxxl/p/14054214.html
Copyright © 2011-2022 走看看