Suppose I’ve two code samples for creating a integer array of 10 elements:
int *pi = (int*)0;
realloc(pi,10);
and the other is the one that is written normally, i.e.:
int *pi;
pi= malloc(10*sizeof(int));
Now, my question is: The first type of assignment is legal but not used. Why, although there I may get the starting location of my choice?
Initialization of pointers with constants are legal but not used. Why?
When
NULLis passed,reallocis equivalent tomalloc. TheNULLcall can be useful if you’re re allocating in some kind of loop and don’t want to have a special case the first time you allocate.While we’re at it, the fairly standard ways to use malloc and realloc are:
As a tangential aside: history is the main reason you see declarations and assignments on different lines. In older versions of C, declarations had to come first in functions. That meant that even if your function didn’t use a variable until 20 lines in, you had to declare at the top.
Since you typically don’t know what the value of a variable not used for another 20 lines should be, you can’t always initialize it to anything meaningful, and thus you’re left with a declaration and no assignment at the top of your function.
In C99/C11, you do not have to declare variables at the top of scopes. In fact, it’s generally suggested to define variables as close to their use as possible.