A single block of memory returned by malloc
, calloc
or realloc
will always be contiguous.
The next block of memory returned by a separate alloc call can be at any address and does not need to be contiguous with the first block.
A single block of memory returned by malloc
, calloc
or realloc
will always be contiguous.
The next block of memory returned by a separate alloc call can be at any address and does not need to be contiguous with the first block.