show/hide this revision's text 3 deleted 39 characters in body

EDIT: Thanks for the comments - I looked it up in the C99 standard, which says in section 6.5.3.4:

The value of the result is implementation-defined, and its type (an unsigned integer type) is size_t, defined in <stddef.h> (and other headers)

So, the size of size_t is not specified, only that it has to be an unsigned integer type. However, an interesting specification can be found in chapter 7.18.3 of the standard:

limit of size_t

SIZE_MAX 65535

Which basically means that, irrespective of the size of size_t, the allowed value range is from 0-65535. In other words; sizeof(size_t) >= 2, the rest is implementation dependent.

show/hide this revision's text 2 added 19 characters in body

size_t is used to represent

EDIT: Thanks for the amount comments - I looked it up in the C99 standard, which says in section 6.5.3.4:

The value of chars the result is implementation-defined, and its type (an object requires unsigned integer type) is size_t, defined in memory <stddef.h> (aka. and other headers)

So, the size in Bytes). Henceof size_t is not specified, only that it always has to be an unsigned integer type. However, an interesting specification can be found in chapter 7.18.3 of the same "sizeof" as a pointerstandard:

sizeof(void *) == sizeof(size_t)

limit of size_t

SIZE_MAX 65535

Which basically means that, irrespective of the size of size_t, the allowed value range is from 0-65535. In other words; sizeof(size_t) >= 2, it the rest is 32 bit on 32-bit machines and 64 bit on 64-bit machinesimplementation dependent.

show/hide this revision's text 1

size_t is used to represent the amount of chars an object requires in memory (aka. size in Bytes). Hence, it always has to be the same "sizeof" as a pointer:

sizeof(void *) == sizeof(size_t)

In other words, it is 32 bit on 32-bit machines and 64 bit on 64-bit machines.