#include "header.h" // File scope variables automatically initialized to bit string 000000 int Counts[256][256]; // Array of counts for dipthongs unsigned char uc[NMax+1]; // Array of Characters NMax #defined in header int main(){ //time_t start, stop; // time() version clock_t start, stop; // clock() version char Format[20]; // Format String for scanf initialized imediately below unsigned char cOld, cNew; int i, j, nStart, n; // Initialize Format String for scanf sprintf(Format, "%%%dc", NMax); //printf("%s\n", Format); // Uncomment for check of format //Start Timer //time(&start); // time() version start = clock(); // clock() version // Get input and count // scanf returns 1 untill it returns -1 when it hits EOF scanf("%c", &cOld); //Initialization for first value printf("cOld=%c\n", cOld); while(scanf(Format, uc)>0){ n = strlen(uc); for(i=0;i