Code::Blocks Forums
User forums => Using Code::Blocks => Topic started by: oligaz on July 28, 2009, 10:29:23 am
-
void xxx(int A[10][10])
{
...
}
or
void xxx(int (*A)[10])
{
...
}
int main()
{
int A[10][10];
xxx(A);
return 0;
}
This code does not work!
-
And this is not a learning C/C++ forum.