Tips


  1. Use scanf("%s", array_name) to read words from your input files into the character array you have defined to hold words.

  2. Use atof to convert strings to doubles and atoi to convert strings (such as the command line argument for threshold in the frequency program) to integers.

  3. The character count should not include the spaces between the words.