Advertisement
ebx

nizovi brojeva

ebx
Jul 9th, 2012
456
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.84 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<math.h>
  4.  
  5. int main() {
  6.     FILE *fp1, *fp2;
  7.     char c;
  8.     fp1=fopen("ULAZ.txt", "r");
  9.     if (fp1 == 0) printf ("Datoteka za citanje nije uspjesno otvorena! ");
  10.     else {
  11.         fp2=fopen("BROJEVI.txt", "w");
  12.         if (fp2 == 0) printf ("Datoteka za pisanje nije uspjesno otvorena! ");
  13.         else
  14.             while (!feof(fp1)) {
  15.                 c = fgetc(fp1);
  16.                 if (c >= 0x30 && c <= 0x39) {
  17.                     fprintf(fp2, "%c", c);
  18.                     c = fgetc(fp1);
  19.                     while (c >= 0x30 && c <= 0x39) {
  20.                         fprintf(fp2, "%c", c);
  21.                         c = fgetc(fp1);
  22.                     }
  23.                     fprintf(fp2, "\n");
  24.                 }
  25.             }
  26.         }
  27.     fclose(fp1);
  28.     fclose(fp2);
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement