in my code i have declared
typedef signed long long int slong;
const slong limit=4000000;
const slong limitsqr=2000;
i then created an array
slong* array=new slong[limit];
without any problem.
when i try this
slong* newarray=new slong[limitsqr][limitsqr];
i get the error message:
in function int main()
cannot convert slong(*)[2000] to slong in initialization
can anyone point out where i'm going wrong?