I have declared and initialized a constant char array within a class:
class grid { const char test[11] = {\'s\', \'e\', \'1\', \'2\', \'3\', \'4\', \'5\'
To make it C++98 compatible, you need to initialize non-static class constants outside of the class declaration.