I\'m trying to create a 2D array of chars to storage lines of chars. For Example:
lines[0]=\"Hello\"; lines[1]=\"Your Back\"; lines[2]=\"Bye\";
You tagged the question with C++ -- why not use a std::vector > for this?
std::vector >
Looking at the compiler error, it looks like you're missing a semicolon before one of your for loops -- the code you posted seems to work perfectly fine here.