Hello,
I was trying to enlarge the size of an array wqith this code:
float data [100];
data = realloc (data, n*sizeof(float) );
but I encountered an error during compile fase, is this sintax right? How
can should I do?
thank you all
Daniele
I was trying to enlarge the size of an array wqith this code:
float data [100];
data = realloc (data, n*sizeof(float) );
but I encountered an error during compile fase, is this sintax right? How
can should I do?
thank you all
Daniele
Comment