What is flexible array member in C?
flexible array member introduced in C99. This feature enables the user to create an empty array in a structure. The size of the empty array can be changed at runtime as per the user requirements. But this empty array must be declared as the last member of the structure and the structure must contain at […]
What is flexible array member in C? Read More »









