put most simply, what is the c++ equivalent to this java code?
int map[][];
map = new int[16][16];
map[5][5] = 3;
System.out.prin tln(map[5][5]);
thanks in advance.
int map[][];
map = new int[16][16];
map[5][5] = 3;
System.out.prin tln(map[5][5]);
thanks in advance.
Comment