Hi I have this question:
Why when I\'m allocating memory with malloc for a float array, it allocate more space that i\'m requesting?
For example in this code i\'m trying to
It's not unlikely that, depending on allocation algorithm, that more is allocated than you request. However, accessing that memory is undefined behavior.