I wonder how to convert a float array to a float* I have this situation :
float* floatTab = {12f, 0.5f, 3f};
It gives me an error here. but if I write it like this float floatTab[3] = {12f, 0.5f, 3f};it compiles alright.
I wonder how to convert a float array to a float* I have this situation :
float* floatTab = {12f, 0.5f, 3f};
It gives me an error here. but if I write it like this float floatTab[3] = {12f, 0.5f, 3f};it compiles alright.