I have a usecase , where I have a structure ‘A’ which has flexible array member , and there is a static function which contains the values to be allocated to the structure object , this static function is being passed as argument to other function which will populate the object values , Here I have to pass empty array to flexible array member , I haven’t done dynamic memory allocation as the structure object is also static and also the function which contains is also static.
So my question is how to pass empty array , {} or {NULL} ?