Pergunta de entrevista da empresa Garmin

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

Resposta da entrevista

Sigiloso

26 de jul. de 2017

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

1