I want pass an array of int to an array that have array of float parameter this is what I tried, it do compile but it give rubbish results !
function_1(float arr*, int len)
{
....
....
}
main()
{
int samp[5] = {-1, 3, 5, 10, 20};
function_1((float *)samp, 5); //not correct !
}