How can I create this much big array? or there is any other option there?
Array of size more than 10^9
No that is not the array size…10^9 is the upper bound of an array element. So take an array with size 10^4 of long long int type and it will do.
How can I create this much big array? or there is any other option there?
No that is not the array size…10^9 is the upper bound of an array element. So take an array with size 10^4 of long long int type and it will do.