Hi, I am trying to initialize 4 string arrays with a length of 10.1 billion and these arrays are similar toarray1={"0","1",..."9"}
array2={"00","01",..."99"}
array3={"000","001",..."999"}
array4={"0000","0001",..."9999"}
But I get an error . Code for static initializer exceeds 65535 bytes limit
how can i initialize my arrays?
Also note that downloading it from a file is not an option for me :(
waqas source
share