Can somebody explain whats wrong in the following code ? I am trying to
pass a matrix and the called function is a double pointer.
#include <iostream>
void func(int **);
int main(int argc,char *argv[])
{
int A[2][2]={1,2,3,4};
func(A);
}
void func(int **A)
{
}
Best,
Pradeep