Advertisement
alexarcan

lab4OS_fopen

Oct 21st, 2015
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <ctype.h>
  5.  
  6.  
  7. int main(int argc, char *argv[])
  8. {
  9.  
  10. int spatii=0, litere=0, cifre=0;
  11. char c;
  12. char nume_fis=' ';
  13.  
  14. FILE *f= fopen("fisier.txt", "r");
  15. FILE *g= fopen("fisier.txt.stat", "w");
  16.  
  17. if(f==NULL)
  18. {
  19. printf("Fisierul nu a fost creat!");
  20. return 0;
  21. }
  22.  
  23. if(g==NULL)
  24. {
  25. printf("Fisierul nu exista!");
  26. return 0;
  27. }
  28.  
  29. while (!feof(f))
  30. {
  31. c=fgetc(f);
  32. if (c == ' ')
  33. spatii++;
  34. if (isalpha(c))
  35. litere++;
  36. if (isdigit(c))
  37. cifre++;
  38.  
  39. }
  40.  
  41.  
  42. fprintf(g,"%d", spatii);
  43. fprintf(g,"\n%d", litere);
  44. fprintf(g,"\n%d", cifre);
  45. fprintf(g,"\n%c", nume_fis);
  46. fclose(f);
  47. fclose(g);
  48. return 0;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement