Computer Science, asked by jake262, 10 months ago

सी' भाषा में एक प्रोग्राम लिखिए जो Student.art फाइल का डाटा पढ़कर उसको Record.txt में कापी करे। साथ ही साथ उसको स्क्रीन पर भी दिखाए।

Answers

Answered by pesh20gathoni
1

Answer:

#include <stdio.h>

#include <stdlib.h>

void main()

{

  char ch, source_file[20], target_file[20];

  FILE *source, *target;

 

  source_file = "Student.art";

 

  source = fopen(source_file, "r");

 

  target_file = "Record.txt";

 

  target = fopen(target_file, "w");

 

  while( ( ch = fgetc(source) ) != EOF )

         {

     fputc(ch, target);

     printf("%c",&ch);

           }

  printf("\n Student.art file is copied into Recored.txt. successfully.\n");

 

  fclose(source);

  fclose(target);

 

  return 0;

}

Explanation:

उप्पर दिया गया सी  प्रोग्राम Student.art फाइल से सब डाटा एक एक करके  Recored.txt  फाइल में कॉपी करेंगा और डिस्प्ले भी करेंगे.

Similar questions