Hi,
Thanks for your reply.
Yes I should be more clear. ch_map will be constant and the size will not change. Also there should be only 3 characters in the initialization strings (I actually was initializing them one by one {'a', 'b', 'c', 'd'} etc.. ). How do I make it a constant static array? I tried in the header file:
Code:
static char ch_map[3][4] = {{'a', 'b', 'c', 'd'}, {'e', 'f', etc.... }};
but that also didn't work.

Thanks for the help.