Re: My arrays in C are too large

2019-09-13 Thread Eliot Moss
On 9/13/2019 7:04 AM, Blair, Charles E III wrote: I have been using on other machines a program that includes char *a[50][8192]; but this declaration, by itself, gives "segmentation" errors. [8192 is BUFSIZ on other machines, although it seems to be 1024 here. The program uses 50 different per

My arrays in C are too large

2019-09-13 Thread Blair, Charles E III
I have been using on other machines a program that includes char *a[50][8192]; but this declaration, by itself, gives "segmentation" errors. [8192 is BUFSIZ on other machines, although it seems to be 1024 here. The program uses 50 different permutations on strings of size BUFSIZ.] -