I am using borland compiler...
i need to define 4 gloabal arrays of double type that can store 5000 values
like
double d[5000],d2[5000],d3[5000],d4[5000]..
and an array of objects of class data whose syntax is:
class data
{
public:
int x,y;
double s,w,e,d;
}d[5000],f[5000];
i am facing two errors:
array size too large
and too much global data defined in file..
can anyone help me please.I will be extremely thankful to you....
do i have to switch over to other compiler??If yes. please tell me the one which can solve my problem for sure and i dont have to make ammendments in my coding as I dont have much time...