I have an array titled: char TypeOfSong[arraySize] where the array size is 15. I am reading data from a file into this array and the characters can be either 'C', 'D', 'E', or 'R'. Each of these characters stands for a word (sting) and when I output the array, I need the strings to show up, not the characters. I have been reading online and in my book but I can only find information on turning one array with the same characters into a string. How would I go about changing this character array with different characters into a sting?
The characters stand for:
C = Country
D = Dance Party
E = Elevator
R = Rock
Any pointers would be helpful.
Thank you, I really appreciate it!
It is more suitable. But I am still having trouble with the concept of how to change those individual characters into the titles that I have listed above.