Displaying ./code/sternflCode/periods.c#include<stdio.h> int main() { //program to connect to the file FILE *f = fopen("/u1/junk/shakespeare.txt", "r"); int c; int count=0; while ( (c=fgetc(f)) != EOF) { if (c=='.') count++; } printf("%d\n", count); return 0; } |