The C standard guarantees that an int is able to store every possible array size. At least, that's what I understand from reading §6.5.2.1, subsection 1 (Array subscripting constraints):

One of the expressions shall have type ‘‘pointer to object type’’, the other expression shall have integer type, and the result has type ‘‘type’’.

Since we shall use ints as array subscripts, why are we supposed to use size_t to determine the size of an array?

Why does strlen() return size_t when int would suffice?

link|improve this question

1  
size_t is typically unsigned. As string size of -1 seems somewhat meaningless, so why would I want to support it? – forsvarir May 14 '11 at 19:52
Not typically. It's required to be an unsigned type. A few buggy implementations used to have signed size_t, and it resulted in extremely serious exploitable vulnerabilities. – R.. May 14 '11 at 20:13
feedback

4 Answers

up vote 9 down vote accepted

The term "integer type" doesn't mean int - for example, char, and short are integer types.

Just because you can use an int to subscript an array doesn't necessarily mean that it can reach all possible array elements.

More specifically about size_t vs. int, one example would be platforms where int might be a 16-bit type and size_t might be a 32-bit type (or the more common 32-bit int vs 64 bit size_t difference on today's 64-bit platforms).

link|improve this answer
feedback

integer type is not necessarily an "int". "long long" is an integer type too, as is "size_t".

Arrays can be larger than 2GB. This property is quite handy for those who write memory hungry programs, e.g DBMS with big buffer pools, application servers with big memory caches etc. Arrays bigger than 2GB/4GB is the whole point of 64 bit computing :)

size_t for strlen(), at least sounds compatible with how C standard handles arrays, whether it makes practical sense or not, or whether somebody have seen strings that large, is another question.

link|improve this answer
1  
While they can in principle exist, it's best for programs to forbid strings larger than INT_MAX in size, since snprintf returns int and gives an overflow error if the resulting string would be longer (i.e. the best safe way to process strings becomes unusable if you want to allow strings longer than 2GB). – R.. May 14 '11 at 20:11
feedback

Firstly, what you quoted from the standard does not make any references to type int specifically. And no, int is not guaranteed to be sufficient to store the size of any object (including arrays) in C.

Secondly, C language does not really have "array subscriptions" specifically. The array subscription is implemented through pointer arithmetic. And the integral operand in pointer arithmetics has ptrdiff_t type. Not size_t, not int, but ptrdiff_t. It is a signed type, BTW, meaning that the value can be negative.

Thirdly, the purpose of size_t is to store the size of any object in the program (i.e. to store the result of sizeof). It is not immediately intended to be used as an array index. It just happens to work as an array index since it is guaranteed that it is always large enough to index any array. However, from an abstract point of view, "array" is a specific kind of "container" and there are other kinds of containers out there (lists-based ones, tree-based ones and so on). In generic case size_t is not sufficient to store the size of any container, which in generic case makes it a questionable choice for array indexing as well. (strlen, on the other hand, is a function that works with arrays specifically, which makes size_t appropriate there.)

link|improve this answer
Given that calloc, qsort, and fread/fwrite all use pairs of size_t values for element size and element count, I disagree with your statement that size_t is not intended to be used as an array index. Also the integer operand in pointer arithmetic and have any integer type, not just ptrdiff_t, but the result of subtracting pointers has type ptrdiff_t. – R.. May 14 '11 at 20:08
@R..: All these functions are specific functions fundamentally tied to arrays, which is what makes it OK to use size_t with these functions. I never disagreed with that. I'm just saying that in a more generic context, when one needs to index a "container" (some container, which might be an array today, but become a list tomorrow), size_t is not an appropriate type. – AndreyT May 14 '11 at 20:11
Many people these days got used to see size_t as some kind of "ultralarge" type which is sufficient to index "the entire memory", thus making it sufficient for all in-memory counting/indexing purposes. In reality, the concept behind size_t is very different. It is not guaranteed to be able to index "the entire memory" – AndreyT May 14 '11 at 20:14
What would you use instead? uintptr_t would work if it exists, but it's not required to exist. As far as I'm concerned systems where size_t is smaller than the pointer size are a legacy consideration and not really worth considering for "tomorrow". – R.. May 14 '11 at 20:16
1  
Segmented memory platforms will typically have such "small" size_t, like DOS/Win16 or like IBM 128-bit platforms. These are my "counterexamples". However, I don't care about any "counterexamples". Counterexamples don't mater. What matters is that size_t implements a very specific concept. And that concept has nothing to to with generic counting. Which immediately makes size_t inappropriate for generic counting. Whether it is "sufficient" or not does not matter at all. – AndreyT May 14 '11 at 20:56
show 16 more comments
feedback

size_t is a typedef of unsigned integer (such as int or long).

In some 64bit platforms, int can be 32bit, while size_t can be 64bit.

It is used as a more standard way for size.

link|improve this answer
"size_t is a typedef of unsigned int." - not always true. – Blagovest Buyukliev May 14 '11 at 20:03
No, size_t is a typedef for some unsigned type. The type hiding behind size_t might even be non-standard, i.e. it might not be expressible as unsigned int, unsigned long etc. – AndreyT May 14 '11 at 20:05
You are both right, I edit my answer – Amir May 14 '11 at 20:12
It's still not right.. – R.. May 14 '11 at 20:23
In theory, size_t might be unsigned long long or even uintmax_t. – Jonathan Leffler May 16 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.