What happens when I use different succesive calloc functions over the same pointer?
int *ptr;
ptr = (int *) calloc(X, sizeof(int));
ptr = (int *) calloc(Y, sizeof(int));
ptr = (int *) calloc(Z, sizeof(int));
Where X,Y,Z are three distinct values.
callocon the same pointer to your heart's content as long as youfreethe memory the pointer is currently pointing to or you make a copy of the pointer before reallocation. – Prætorian Oct 12 '11 at 15:26