README This is the readme file for HW8: The program is used to count the number of occurences of each character pair in a file. The output should be the total number of the non-zero count character pair. and their counts each on a new line with the character pair followed by two spaces and then a left justified long integer giving the number of occurences of that symbol. Example to Use: ///////////////////////////////////////////////////// [ydai@galois11 Robin_HW8]$ make clean rm -f Robin_HW8 [ydai@galois11 Robin_HW8]$ make gcc -lm -Os -o Robin_HW8 robin.c [ydai@galois11 Robin_HW8]$ ./Robin_HW8 Read the file: CountATest1.txt Output file: duck1.txt [ydai@galois11 Robin_HW8]$ ./Robin_HW8 Read the file: CountATest2.txt Output file: duck2.txt [ydai@galois11 Robin_HW8]$ ./Robin_HW8 Read the file: CountATest3.txt Output file: duck3.txt [ydai@galois11 Robin_HW8]$ /////////////////////////////////////////////////// testing results are duck1.txt, duck2.txt and duck3.txt 7/13/2009 Robin