B
buu
I'm trying to create a simple 2-dim array of integers, but don't know how to
do that...
in definition of class, I wrote:
int *results;
while in constructor:
results = new int[256][256];
but, I got an error: C2440: '=' cannot convert from int{*}[256] to 'int *'.
what is wrong?
do that...
in definition of class, I wrote:
int *results;
while in constructor:
results = new int[256][256];
but, I got an error: C2440: '=' cannot convert from int{*}[256] to 'int *'.
what is wrong?