i have to declare an integer array, float array ,and character array of 85020 indexes..when im declaring it ..my compiler is giving error that array size is too large.
please tell me how can i declare array of this size.
<iostream>
<conio.h>
int main()
{
int a[85020];
float b[85020];
char c[85020];
getch();
}