ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 1195. Ouths and Crosses

plz 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