sizeof integer or any other built-in type is implementation defined in C and C++. Standard has only specified their minimum sizes
Base type Minimum size (bits) Minimum value (signed) Maximum value (signed) Maximum value (unsigned) char 8 -127 127 255 short 16 -32,767 32,767 65,535 int 16 -32,767 32,767 65,535 long 32 -2,147,483,647 2,147,483,647 4,294,967,295








MultiQuote




|