Basically the program is meant to have the user input a string and then count each time a number is used and then print it out. The problem I'm having is that when the program prints out the results, it will have certain words appearing more than once, based on how many times they appear in the string.
For example if I input hello hello hi hey hey, the program will print out:
hello 2
hello 2
hi 1
hey 2
hey 2
The output I'm aiming for is:
hello 2
hi 1
hey 2
Thanks in advance.
For example let assume that allwords[0].word contains word "Hello". According to the condition
allwords[a].word==allwords[b].word
we will have
allwords[0].word==allwords[0].word
and allwords[a].cnt will be incremented though there is only one word "Hello" in the array.
I would simplify your code the following way. The array can be initialized when it is defined.
Word allwords[200] - {};
In this case you need no the loop
1 2
for(int z=0;z<200;z++)
allwords[z].cnt=0;
In the loop where words are entered you can check whether a word is already is in the arrray. There is no need to store all words in the array because your task is different. You need only count the occurence of each word in the input stream.