C supports [Flexible-Arrays ](https://wiki.sei.cmu.edu/confluence/display/c/DCL38-C.+Use+the+correct+syntax+when+declaring+a+flexible+array+member#main-content:~:text=As%20a%20special%20case%2C%20the%20last,generate%20a%20pointer%20one%20past%20it.)as the last member of a struct having more than 1 member. Structs of the following type - ```C struct T{ int a; int b[]; // flexible array member, can only be at the end. } ``` are not supported currently.