Possible Duplicate:
Why are C character literals ints instead of chars?
folks,
I tried to print out the size of char in C. With the following code, I got the result output as
int, 4
char, 1
char?, 4
Why is the last one not the same as the 2nd one? Thanks.
#include <stdio.h>
main()
{
int a = 2;
char b = '2';
printf("int, %d\n",sizeof(a));
printf("char, %d\n",sizeof(b));
printf("char?, %d\n",sizeof('a'));
}
sizeof(char)is 1, by definition ---sizeof()returns values in char units. Which aren't the same as bytes! AFAICT there is no way to get the size of a structure in bytes without platform knowledge (i.e., how many bytes there are in a char). – David Given Mar 3 '12 at 19:27sizeofoperator yields the size (in bytes) of its operand,” and “When applied to an operand that has typechar... the result is 1.” It also specifies theCHAR_BITmacro as the “number of bits for smallest object that is not a bit-field (byte)”, in case you want to convert from native bytes to octets. – rob mayoff Mar 3 '12 at 19:34