Advertisement
Aseron

Zolcsikának <3

Oct 20th, 2017
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.80 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.  
  7.     FILE* alma;
  8.     FILE* korte;
  9.  
  10.  
  11.     alma = fopen("alma.txt","w");
  12.     if(alma == NULL){
  13.         perror(alma);
  14.         abort();
  15.     }
  16.  
  17.     korte = fopen("korte.txt","w+");
  18.     if(korte == NULL){
  19.         perror(korte);
  20.         abort();
  21.     }
  22.  
  23.     fprintf(alma,"%d Almafa_van_a_kertben!", 10);
  24.     fclose(alma);
  25.  
  26.     alma = fopen("alma.txt","r");
  27.  
  28.  
  29.     // fscanf(alma,"%s", szoveg);
  30.  
  31.     // printf("%d %s", szam, szoveg);
  32.  
  33.     int a,o;
  34.  
  35.     while(!feof(alma)){
  36.         a = fgetc(alma);
  37.         fputc(a,korte);
  38.  
  39.     }
  40.  
  41.     fclose(alma);
  42.     fclose(korte);
  43.  
  44.     korte = fopen("korte.txt","r");
  45.  
  46.     while(!feof(korte)){
  47.         o = fgetc(korte);
  48.         putchar(o);
  49.     }
  50.  
  51.  
  52.     fclose(korte);
  53.  
  54.     return 0;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement