Tagged Questions

5
votes
3answers
136 views

How do you prevent variable-length arrays from crashing when there is not enough memory?

Before variable-length arrays were supported, I would dynamically allocate them like this: int foo(size_t n) { int *arr = malloc(n * sizeof int); if (!arr) return ENOMEM; /* not enough memory ...
5
votes
4answers
1k views

variable-length arrays

I just wonder if there is some overhead of using variable-length arrays? Can the size of array could be passed via command line argument at run time? Why is it introduced, compared to automatic and ...
3
votes
1answer
78 views

Initializing VLAs

The following line of code, which creates a variable-length array on the stack: char name[cpfs_params(cfdata->cpfs)->namemax + 1] = {'\0'}; Generates the following compiler diagnostics: ...
2
votes
1answer
697 views

Are variable length arrays possible with Javascript

I want to make a variable length array in Javascript. Is this possible. A quick google search for "Javascript variable length array" doesn't seem to yield anything, which would be surprising if it ...
2
votes
1answer
5k views

Two-dimensional variable-length array in Cobol

How do you go about defining a two-dimensional MxN array in Cobol of which both M and N are of variable length? Here's the message I get in Net Express when attempting to have a variable array inside ...
1
vote
5answers
827 views

What is best way to implement variable length arrays?

I want to store a large result set from database in memory. Every record has variable length and access time must be as fast as arrays. What is the best way to implement this? I was thinking of ...