My question is if writing this line: float* array = malloc(3*sizeof(float)); Is equivalent of writing: float array[3]; If not, why?
(i'm reaaally new to C)
I noticed that when i try to manipulate the elements of each case it works well, but i'm skeptic of believing that it is literally the same thing written in another way in a lower-level (or even higher)