Content originally posted in LPCWare by TheFallGuy on Thu Jul 09 02:37:18 MST 2015
How about learning C?
You are trying to initialise an array of characters with an array of POINTERS to characters. So, use
const unsigned char *word[] = {
"menu", "mani", "manual", "rocno"
};