Flexible Array Member in C (FAM)
Before explaining the Flexible Array Member, It would be useful and easily understandable, if I explain the problem that we have. Flexible Array Member in C Problem Let’s take one example where I have to create one structure with variable size of the array. See the below snippet. typedef struct { char name[14]; char age; … Read more