let's say i have this code:
Code:
int main() {
int size = 6;
char ez[size][size];
//fill up 2d array ez with some stuff
  deal_with(ez,size);
}

void deal_with( ????? , int size) {



}
what kind of thing do i pass to the function? i've tried passing it as a 2d array, but since size is not predetermined, it can't guess the size of the array. i've tried a char** but it gives me an error. any ideas?