i don't know where is the problem i'm assigning the address to other 2 dimensional array. Please help me to fix this problem
int main()
{
int a[3][2];
int b[2]={0,1};
a[2]=b;
return 0;
}
prog.cpp:8:9: error: invalid array assignment