is it possible to realloc memory from a pointer to NULL in C?
int *v = 0;
for(i = 0; i < 10; i++)
v = (int *) realloc(v, (i+1)*sizeof(int));
|
If ptr is NULL, then the call is equivalent to malloc(size), for all values of size. Source: man 3 realloc |
|||
|
|
|
"In case that ptr is NULL, the function behaves exactly as malloc, assigning a new block of size bytes and returning a pointer to the beginning of it." http://www.cplusplus.com/reference/clibrary/cstdlib/realloc/ By the way, I know this code is only for the question but you should always check the return value of realloc before updating your pointer:
If you don't, you will lose your reference to your allocated memory when realloc fails. |
||||
|
|
From the Standard
|
|||
|
|
|
From the manpage:
However, you shouldn't forget that |
|||
|
|
|
|
|||
|
|
|
From realloc man page:
|
|||
|
|
reallocfails. – R.. Mar 29 '11 at 12:15