Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
13  
playing around with prime numbers? aah.. the memories :) – roe Mar 3 '09 at 10:22
31  
Also, it is more maintainable to write sieve = malloc( sizeof *sieve * length ); – William Pursell Jul 29 '09 at 17:15
3  
11  
@KarolyHorvath this is not the only reason. The other (and most important, IMHO), is to make code more flexible (yet not less secure or robust) if the type of sieve changes from int to, say, float. malloc( sizeof *sieve * length ); will work regardless of the type, while a cast needs maintenance, adds nothing, and may create tough to track bugs. – MestreLion Oct 10 '12 at 4:35
2  
@MestreLion: "and may create tough to track bugs" - all you have to do is enable compile warnings and it's never going to happen. OTOH if you don't... you really deserve it. and, again, I'm not an advocate of using it.. all I'm saying that it's really not that important... it's mostly harmless :) – Karoly Horvath Oct 10 '12 at 9:44
show 2 more comments

9 Answers

up vote 230 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 bad.

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.

share|improve this answer
49  
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
61  
amen for a straight C answer, none of this C++ nonsense – Matt Joiner Oct 23 '09 at 7:08
11  
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
33  
@ArtB: Citation needed. – R.. May 11 '11 at 17:13
8  
@luis.espinal: You did not read my question with understanding. 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 '12 at 20:52
show 16 more comments

In C, you don't need to cast the return value of malloc. The pointer to void returned by malloc is automagically converted 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.

share|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
9  
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 '12 at 12:27

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++.

share|improve this answer
5  
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
9  
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
2  
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
17  
@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

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.

share|improve this answer
2  
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 '12 at 12:29
@Jens: I fixed the wording. – Keith Thompson May 13 '12 at 0:36

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

share|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 '12 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 '12 at 7:17
@EFraim: I fixed the wording. – Keith Thompson May 13 '12 at 0:36

You do cast, because:

  • It makes your code more portable between C and C++, and as SO experience shows, a great many programmers claim they are writing in C when they are really writing in C++ (or C plus local compiler extensions).
  • Failing to do so can hide an error: note all the SO examples of confusing when to write type * versus type **.
  • The idea that it keeps you from noticing you failed to #include an appropriate header file is rather stupendously stupid. It's the same as saying "don't worry about the fact you failed to ask the compiler to complain about not seeing prototypes -- that pesky stdlib.h is the REAL important thing to remember!"
  • It forces an extra cognitive cross-check. It puts the (alleged) desired type right next to the arithmetic you're doing for the raw size of that variable. I bet you could do an SO study that shows that malloc() bugs are caught much faster when there's a cast. As with assertions, annotations that reveal intent decrease bugs.
  • Repeating yourself in a way that the machine can check is often a great idea. In fact, that's what an assertion is, and this use of cast is an assertion. Assertions are still the most general technique we have for getting code correct, since Turing came up with the idea so many years ago.
share|improve this answer
2  
"portability between languages" -- excuse me... wat? – ulidtko Mar 15 at 17:54
2  
@ulidtko In case you did not know, it's possible to write code which compiles both as C and as C++. In fact most header files are like this, and they often contain code (macros and inline functions). Having a .c/.cpp file to compile as both is not useful very often, but one case is adding C++ throw support when compiled with C++ compiler (but return -1; when compiled with C compiler, or whatever). – hyde Mar 26 at 11:09
If someone had malloc calls inline in a header I wouldn't be impressed, #ifdef __cplusplus and extern "C" {} are for this job, not adding in extra casts. – paulm May 6 at 17:55

It is not mandatory to cast the results of malloc, since it returns void* , and a void* can be pointed to any datatype.

share|improve this answer

the returned type is void*, which can be cast to the desired type of data pointer in order to be dereferenceable.

share|improve this answer

I think this is the wrong advice given to you, because our way of writing too matters while we design a software. Best way to write is:

int *ptr=(int *)malloc(sizeof(any_variable));
share|improve this answer
2  
Please don't rollback edits that remove signatures. Signatures and taglines are not permitted here in answers. – Brad Larson Jul 26 '12 at 17:00
Might be an idea to say WHY is best to write it that way, especially so when there are a lot of answers here contradicting yours. – paulm May 6 at 17:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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