Question d’entretien chez Garmin

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

Réponse à la question d'entretien

Utilisateur anonyme

26 juil. 2017

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

1