Pregunta de entrevista de Garmin

Describe a time you'd use a pointer to a pointer.

Respuesta de la entrevista

Anónimo

26 jul 2017

2-d array int rows, cols; int** a = new int* []; for(int i = 0; i < rows; i++) { a[i] = new int* [cols] }

1