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?

link|improve this question

79% accept rate
4  
playing around with prime numbers? aah.. the memories :) – roe Mar 3 '09 at 10:22
13  
Also, it is more maintainable to write sieve = malloc( sizeof *sieve * length ); – William Pursell Jul 29 '09 at 17:15
1  
9  
I think this is probably the most annoying advice you see here in SO. It's not that it is a bad advice. I find it annoying because it's almost completely harmless to do the cast, yet people are complaining about it all the time. The only decent argument I could find is "It can hide an error, if you forgot to include <stdlib.h>", which simply won't happen if you use a decent compiler. I wish people were focusing on more important issues. – Karoly Horvath Mar 1 at 1:34
feedback

7 Answers

up vote 96 down vote accepted

You don't cast the result, since:

  • It is unnecessary, as void * is automatically and safely promoted to any other pointer type in this case.
  • It can hide an error, if you forgot to include <stdlib.h>. This can cause crashes, in the worst case.
  • It adds clutter to the code, casts are not very easy to read (especially if the pointer type is long).
  • It makes you repeat yourself, which is generally a badness.

As a clarification, note that I said "you don't cast", not "you don't need to cast". In my opinion, it's a failure to include the cast, even if you got it right. There are simply no benefits to doing it, but a bunch of potential risks, and including the cast indicates that you don't know about the risks.

Also note, as commentators point out, that the above changes for straight C, not C++. I very firmly believe in C and C++ as separate languages.

link|improve this answer
20  
True. However, in C++ the cast is required, so if you want your code to work in both, you'll have to compromise. But in pure C, don't do the cast for the reasons you stated. – jalf Mar 3 '09 at 10:36
25  
amen for a straight C answer, none of this C++ nonsense – Matt Joiner Oct 23 '09 at 7:08
5  
Considering that C++ compilers give better warnings than C compilers, making your code C++ compilable is worth the downside IMHO. – ArtB Mar 23 '11 at 17:02
13  
@ArtB: Citation needed. – R.. May 11 '11 at 17:13
4  
@luis.espinal: You did not read my question with understanding or you only read what matches your own strong opinion on the subject. If you do_not_include <stdlib.h> and you use malloc you get "implicit declaration" warning (it does not matter whether you cast or not). – sirgeorge Mar 14 at 20:52
show 10 more comments
feedback

In C, you don't need to cast the return value of malloc. The pointer to void returned by malloc is automagically cast to the correct type. However, if you want your code to compile with a C++ compiler, a cast is needed. A preferred alternative among the community is to use the following:

int *sieve = malloc(sizeof *sieve * length);

which additionally frees you from having to worry about changing the right-hand side of the expression if ever you change the type of sieve.

Casts are bad, as people have pointed out. Specially pointer casts.

link|improve this answer
In the preferred alternative, what is "a" ? – Thomas L Holaday Mar 3 '09 at 10:57
Typo. Thanks though! – dirkgently Mar 3 '09 at 11:05
Sloppy wording: it is not automatically cast to the correct type (that would require a cast operator). Pointers to void are simply assignment-compatible to any other pointer-to-object type. – Jens Apr 28 at 12:27
feedback

In C you can implicitly convert a void pointer to any other kind of pointer, so a 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.

link|improve this answer
Sloppy wording: there is no such thing as an "implicit cast". If there is no cast operator, there is no cast. Pointers to void are simply assignment-compatible to any other pointer-to-object type. – Jens Apr 28 at 12:29
@Jens: I fixed the wording. – Keith Thompson May 13 at 0:36
feedback

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:

#ifdef __cplusplus
# define NEW(type, count) ((type *)calloc(count, sizeof(type)))
#else
# define NEW(type, count) (calloc(count, sizeof(type)))
#endif

That way you can still write it in a very compact way:

int *sieve = NEW(int, 1);

and it will compile for C and C++.

link|improve this answer
3  
Since you're using a macro anyway, why don't you use new in the definition of C++? – Hosam Aly Mar 4 '09 at 6:13
2  
Because there is no reason to do so. It is mainly for C programs that are compiled with a C++ compiler. If you are going to use 'new', the only thing you get are problems. You need then also a macro for free. And you need a macro to free an array, a differentiation that doesn't exists in C. – quinmars Mar 4 '09 at 8:51
1  
Not to mention if it's not you who frees the memory but maybe a C library you are using, etc. Many possible problems without any gain. – quinmars Mar 4 '09 at 8:53
3  
Hmmm... I didn't think of that. Is it an error to use free() to free memory allocated with new? – Hosam Aly Mar 4 '09 at 12:38
3  
@Hosam: Yes, it definitely is. If you use new you must use delete and if you use malloc() you must you free(). Never mix them. – Graeme Perrow Jul 16 '11 at 17:10
show 1 more comment
feedback

In C you get an implicit conversion from void* to any other (data) pointer.

link|improve this answer
Sloppy wording: there is no such thing as an "implicit cast". If there is no cast operator, there is no cast. Pointers to void are simply assignment-compatible to any other pointer-to-object type. – Jens Apr 28 at 12:30
@Jens: OK, maybe the more proper wording is "implicit conversion". Like use of integral variable in floating point expression. – EFraim Apr 29 at 7:17
@EFraim: I fixed the wording. – Keith Thompson May 13 at 0:36
feedback

I like this explanation because it's throughout, talking about possible goodness and bad consequences: Casting.

link|improve this answer
5  
broken link is broken – Claudiu Dec 8 '11 at 21:33
feedback

It's optional. Typically you do the cast to avoid compiler warnings.

Marco

link|improve this answer
3  
You won't get a warning because a void pointer can always be cast to any other pointer. – dreamlax Mar 3 '09 at 10:21
1  
Thus, if you get a warning without the cast, your code has a bug, probably not including <stdlib.h>. – Lars Wirzenius Mar 3 '09 at 11:10
1  
Or he has an ancient libc version, where malloc returns a (char *)-pointer: en.wikipedia.org/wiki/Malloc – quinmars Mar 3 '09 at 12:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.