Here is my problem:
I have a .txt file, that contains only words. I need to write them into the second file in alphabetic order.
I have to use 26 stacks (one of the rules of task). I have an array of 26 pointers (something like Stack * abc[25]. I have to read from the incoming file first word as a string, but i don't know how to do it... I think i should alter the getline, but i don't know how. Could someone please help?