|
|
back to boardplz help!!! Posted by hoan 7 Nov 2010 21:49 I got AC but i have a question: why when i use: int f(char **v){ . . . } int main (){ char m[5][5]; f (m); } my code have compile error. and when i use : int f(char v[][5]){ . . . } int main (){ char m[5][5]; f (m); } it's correct. is'nt the type of m char **? if "yes" what's the type of m? sorry for my poor english. Edited by author 07.11.2010 21:51 |
|
|