# include # include # include int static words = 0,chars = 0,senten = 0; int i = 0; main()/*start of main function*/ { char ch; char ch1[1000]; FILE*fp; FILE*fp1; fp1 = fopen("NUMBERofCHars.txt","w"); fp = fopen("Paragraph.txt","r+"); while((ch=fgetc(fp)) != EOF) { ch1[i] = ch; if (ch1[i] == '.'){/*condition for number of sentences*/ senten = senten + 1; } if ...