0
How can i declare a function with ' 2 dimensional char' array in c.?? I am trying like this : void structural (char [] []);
3 Answers
+ 2
Why downvote Eliya Ben Baruch
He gives good advice
+ 1
void structural(char[10][5]) you need to give in the array size you can omit the first but not the last void structural(char [][5])
0
Give the parameter a name