Tagged Questions
6
votes
10answers
4k views
Variable Sized Struct C++
Is this the best way to make a variable sized struct in C++? I don't want to use vector because the length doesn't change after initialization.
struct Packet
{
unsigned int bytelength;
...
4
votes
2answers
482 views
Reading a Struct Within a Struct via PHP's Unpack Function
I want to know how to read a struct within a struct via php's unpack function. When I get an IS_MCI packet, I check it's Type to make sure it's equal to ISP_MCI, and then I check NumC to find out how ...
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 = ...