> But the ModelInstance definition doesn't seem to suggest it is an array.
fmi2Real *r;
RunIn C, arrays are a pointer to the first element in the array, thus r is both a pointer to a fmi2Real and an array of fmi2Reals.
> But the ModelInstance definition doesn't seem to suggest it is an array.
fmi2Real *r;
RunIn C, arrays are a pointer to the first element in the array, thus r is both a pointer to a fmi2Real and an array of fmi2Reals.