You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
482 B
C

#include<stdio.h>
#include<stdlib.h>
void main()
{
FILE *fp;
char ch;
int tc=0,tw=1;
fp=fopen("file.txt","r");
if(fp==NULL)
{
printf("File doesn't exist\n");
exit(1);
}
while(!feof(fp))
{
ch=getc(fp);
tc++;
if(ch==' ')
{
tw++;
}
}
printf("Total character: %d \nTotal words: %d",tc,tw);
}