I'm having a tough time trying to make a bit of code work. I'm trying to an array that's declared as so:
char house_matrix_floor0[38][38+1] = { ... };
In between the brackets I only have strings to compose the matriz I want. The problem comes when I try to pass this matriz to a method that expects a char**, giving me this error:
argument of type "char (*)[39]" is incompatible with parameter of type "char **"
I bet this is a common problem, but i cant seem to find a solution and couldn't find an answer on the web.
Thank you for the attention and hope you can help.