I want to pass a float array from one function to another function
I want to make use of the float array type(here container)
void funct1()
{
float container[4]={0.1,0.2,0.3,0.4}
void funct2() ----(1)
{return container;}
}
void funct3()
{
void funct2();
use container array;
}
Here what would be the funct2() like
void funct2(container) ----(1)
void funct2(float container[]) ---(2)
use container array