Created
November 10, 2017 22:28
-
-
Save NikitaShkaruba/511c7f756f19f3a69d597fffb61ed680 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int height = 10; | |
int width = 5; | |
int** double_array = new int*[height]; | |
for (int i = 0; i < height; i++) { | |
double_array[i] = new int[width]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment