Tagged Questions
7
votes
3answers
282 views
What does (int (*)[])var1 stand for?
I found this example code and I tried to google what (int (*)[])var1 could stand for, but I got no usefull results.
#include <unistd.h>
#include <stdlib.h>
int i(int n,int m,int ...
5
votes
3answers
137 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 ...
4
votes
6answers
184 views
Why is void f(…) not allowed in C?
Why doesn't C allow a function with variable length argument list such as:
void f(...)
{
// do something...
}
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:
...
3
votes
2answers
175 views
Freeing variable-sized struct in C
I am using a variable-sized C struct, as follows:
typedef struct {
int num_elems;
int elem1;
} mystruct;
// say I have 5 elements I would like to hold.
mystruct * ms = ...
2
votes
5answers
1k views
How to implement a variable-length ‘string’-y in C
I’ve googled quite a bit, but I can’t find information on how variable-length strings are generally implemented in higher-level languages. I’m creating my own such language, and am not sure where to ...