Hello everybody, I want to overload a function based on an array dimension or pointers.
Ex:
int calc(int a[]);
int calc(int a[][]);
or
int calc(int *a);
int calc(int **a);
*a should be &a but i dont know how to face a reference of a reference so i wrote * for better understading...