Simple question:
For my assignment I am asked to count the words in a file and keep track of their frequency. I am to create a parallel int array for the frequency.
Is a parallel array a special data structure, or does it simply mean I am creating 2 arrays, where one is dependent on the other. For example, I create 2 dynamic arrays and update both inside the loop with respect to my i variable from the for loop.