123456789101112
char Level[25][25] = { "#####", "#...#", "#...#", "#-.+#", "#####" }; char IntegerLevel[25][25] = static_cast<char>(Level[25][25]);
123
for (int i = 0; i < 5; i++) for (int j = 0; i < 5; j++) casted_array[i][j] = other_array[i][j];