Open
Description
C supports Flexible-Arrays as the last member of a struct having more than 1 member.
Structs of the following type -
struct T{
int a;
int b[]; // flexible array member, can only be at the end.
}
are not supported currently.
C supports Flexible-Arrays as the last member of a struct having more than 1 member.
Structs of the following type -
struct T{
int a;
int b[]; // flexible array member, can only be at the end.
}
are not supported currently.