Hi recently I saw a lot of code on online(also on SO;) like:
char *p = malloc( sizeof(char) * ( len + 1 ) );
Why sizeof(char) ? It's not necessary, isn't it? Or Is it just a matter of style? What advantages does it have?
|
|
Yes, it's a matter of style, because you'd expect On the other hand, it's very much an idiom to use Also better for maintenance, perhaps. If you were switching from
without much thought. Whereas converting the statement |
|||||||||||||
|
|
It serves to self-document the operation. The language defines a char to be exactly one byte. It doesn't specify how many bits are in that byte as some machines have 8, 12, 16, 19, or 30 bit minimum addressable units (or more). But a char is always one byte. |
|||
|
|
|
The specification dictates that chars are 1-byte, so it is strictly optional. I personally always include the |
|||
|
|