Passing an array and its length with a struct in C weird behavior
I’m trying to return an array and its length from one function to another. I’ve learned that I can’t simply determine the size of the returning array in the parent function with sizeof() because …