let's say i have a 2D array, how would i access it with a pointer?
int x [2][2];
func(x);
void func(int *x) {
//i want to fill it with a number, like 1
}
int x [2][2];
func(x);
void func(int *x) {
//i want to fill it with a number, like 1
}
Comment