In this question, someone suggested in a comment that I should not cast the results of malloc. I.e.
int *sieve = malloc(sizeof(int)*length);
rather than
int *sieve = (int *)malloc(sizeof(int)*length);
Why would this be the case?
|
1
|
In this question, someone suggested in a comment that I should not cast the results of malloc. I.e.
rather than
Why would this be the case?
|
||||||
|
|
|
You don't cast the result, since:
|
||||||||||||
|
|
|
This is kind of off topic, but a lot of people here I think are being a little harsh on casting. There are perfectly legitimate reasons to do it, like the following:
Lest we forget our painful integer division bugs! |
||
|
|
|
I like this explanation because it's throughout, talking about possible goodness and bad consequences: Casting. |
|||
|
|
|
|
As other stated, it is not needed for C, but for C++. If you think you are going to compile your C code with a C++ compiler, for which reasons ever, you can use a macro instead, like:
That way you can still write it in a very compact way:
and it will compile for C and C++. |
||||||||||
|
|
|
In C you can implicitly cast a void pointer to any other kind of pointer, so an explicit cast is not necessary. Using one may suggest to the casual observer that there is some reason why one is needed, which may be misleading. |
||
|
|
|
|
In C, you don't need to cast the return value of
which additionally frees you from having to worry about changing the right-hand side of the expression if ever you change the type of Casts are bad, as people have pointed out. Specially pointer casts. |
||||
|
|
|
It's optional. Typically you do the cast to avoid compiler warnings. Marco |
||||||||
|
|
|
In C you get an implicit cast from void* to any other (data) pointer. |
||
|
|