Trying to get away from String objects, google is providing more confusion than answers (because I am easily confused)
I have this declaration using the String object array....
String Message[] = {"Happy Holidays",
"Some men are Baptists, others Catholics. My father was an Oldsmobile man.",
"In our world, you were either a bully, a toady, or one of the nameless rabble of victims!",
"BB Gun mania knows no loyalty.",
"NADDAFINGA!!",
"Eat, drink and be merry for tomorrow you may diet",
"He looks like a deranged Easter Bunny.",
"Didn't I get a tie this year?",
"SONS O' B&*&^$#@ES! BUMPUSES!!!",
"I can't put my arms down!"
};
How do I modify this to use as a two deminsional array of char? I want to submit it to a function such as...displayMessage(Message[n]) // n indicates which message
....so I also need to understand what the function declaration would look like. Do I need to use pointers to do that. I am still very weak on pointers.
I was using Strings but they seem to bite me and it was suggested that I learn to use the standard array of char for strings. I have googled quite a bit on this and find that there are many roads to Rome and I seem to be getting lost in them.