I declared this: char (* words)[13];
Now I need to declare a function that returns the variable: words.
If I declare like this: char (*)[13]GetWords();
the compiling error is: "abstract declarator `char (*)[13]' used as declaration ".
If I declare like this: char *[13]GetWords();
then the compiling error is: "abstract declarator `char*' used as declaration".
Can any one tell me the correct way to do this? Thank you in advance.