I want to get the value from a Reference in function. My Function is:
void print2D_A(double (*ary2D)[3][4]){ ... }
Main:
double ary2D[3][4] = {
{10.1, 11.2, 12.3, 13.4},
{20.1, 21.2, 22.3, 23.4},
{30.1, 31.2, 32.3, 33.4}
};
print2D_A(&ary2D);
Get First Value in Function:
*(ary2D)+1