Guest User

Untitled

a guest
Apr 23rd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. void print(letterOrder theOrder[],int size)//prints the data, struct helps keep the data together
  2. {
  3. for(int count = 0 ; count < size ; count++)
  4. {
  5. if(theOrder[count].frequency)
  6. cout<<theOrder[count].letter<<" " <<theOrder[count].frequency<<endl;
  7. }
  8. }
Add Comment
Please, Sign In to add comment