When I want to pass a "char (*c)[10];
" as a parameter,
what argument should I define in my function definition?
I mean, if I have a function:
void foo(*****) { ... }
I want to pass char (*c)[10];
to it, so what do I write in place of *****
?