11-12-2022, 06:02 PM
Greetings to all and congratulations for the creators of this forum and qb64Pe programmers.
I am programing something in QB64, and I need to create an array bidimensional of 3^14. I need 13 different values in each cell, so I used _bit*4 to store.
But the down array is the max lenght array I get
matrix = 3 ^ 10
DIM disaci(matrix, matrix) AS _BIT * 4
If I considerer only one bit for cell to store, then I can up lenght array to 3^11.
The question is: Can I make this array with QB64?
matrix = 3 ^ 14
DIM disaci(matrix, matrix) AS _BIT * 4
or forget it?
Thank you very much for attention
I am programing something in QB64, and I need to create an array bidimensional of 3^14. I need 13 different values in each cell, so I used _bit*4 to store.
But the down array is the max lenght array I get
matrix = 3 ^ 10
DIM disaci(matrix, matrix) AS _BIT * 4
If I considerer only one bit for cell to store, then I can up lenght array to 3^11.
The question is: Can I make this array with QB64?
matrix = 3 ^ 14
DIM disaci(matrix, matrix) AS _BIT * 4
or forget it?
Thank you very much for attention