First of all, on my system the following hold: sizeof(char) == 1 and sizeof(char*) == 4.
So simply, when we calculate the total size of the class below:
class SampleClass { char c; char* c_ptr; };
we could say that sizeof(SampleClass) = 5. HOWEVER, when we compile the code, we easily see that sizeof(SampleClass) = 8.
So the question is "where is the problem with calculation?" :S
Language: C++ Compiler: gcc 4.4.0 OS: Tinycore
sizeof(char)is 1, but that does not mean that a character is 8 bits. – dmckee Oct 9 '10 at 18:36sizeof(void *)might very well be 1 (and it's time to implement a packed character type to avoid wasting 24 bits on eachchar). To make a claim like that you have to name the architecture and compiler (including the version). – dmckee Oct 9 '10 at 18:47CHAR_BITis exactly 8. Of course with emulation you could run linux somewhere above that hardware, or you could provide that environment somewhere above linux, but in either case, when talking about the 32-bit-char environment it would be wrong to describe it as "32-bit linux". The questioner has said, "32-bit linux", and that is enough to tell us the sizes ofcharandchar*. – Steve Jessop Oct 9 '10 at 18:54