I have a cpp function via an interface
float* decode() which returns pointers to raw data of a static vector.
Now in my c code I have a
float *value0;
value0 = (float*) malloc(M* sizeof(float) );
now when I do
value0 = work_decode1(h0, code0, 7, retain0);
I can only see the first value from the vector in value0 when I hover over it in visual studio debug mode. What is wrong here?