Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <ctype.h>
- int main(int argc, char *argv[])
- {
- int spatii=0, litere=0, cifre=0;
- char c;
- char nume_fis=' ';
- FILE *f= fopen("fisier.txt", "r");
- FILE *g= fopen("fisier.txt.stat", "w");
- if(f==NULL)
- {
- printf("Fisierul nu a fost creat!");
- return 0;
- }
- if(g==NULL)
- {
- printf("Fisierul nu exista!");
- return 0;
- }
- while (!feof(f))
- {
- c=fgetc(f);
- if (c == ' ')
- spatii++;
- if (isalpha(c))
- litere++;
- if (isdigit(c))
- cifre++;
- }
- fprintf(g,"%d", spatii);
- fprintf(g,"\n%d", litere);
- fprintf(g,"\n%d", cifre);
- fprintf(g,"\n%c", nume_fis);
- fclose(f);
- fclose(g);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement