When you create the multi-dimenstional array char a[10][10], according to my book it says you must use a parameter similiar to char a[][10] to pass the array to a function.
Why must you specify the length as such? Aren't you just passing a double pointer to being with, and doesn't that double pointer allready point to allocated memory? So why couldn't the paramter be char **a? Are you reallocating any new memory by supplying the second 10.