Im sure it's because char does not work as strings do. But for my school project I need to make this script with chars (can't use strings, because I need to learn how chars work).
As I've understood from the script is that, the compiler does not know what index number all the flights command will get. Like flights[0] = (hi, hello); and flights[1] = (hows it, going);
With strings and vectors its much more easy when you can add push.back that handles that for you etc.
But how do I get this to work with chars? Anybody? :P
Thank you for the reply! Problem is that I actually don't know what to change to make the flights array to actually make those poitns to "point" at something.
I usually use vectors and strings and its SO much easier! Though this is for my school project and im stuck :(
Any ideas of what I could change, if it's possible to write this way?