Tagged Questions

1
vote
3answers
148 views

Can we change the size of size_t in C?

Can we change the size of size_t in C?
10
votes
7answers
373 views

size_t vs. intptr_t

The C standard guarantees that size_t is a type that can hold any array index. This means that, logically, size_t should be able to hold any pointer type. I've read on some sites t …
4
votes
8answers
765 views

Cross platform format string for variables of type size_t?

On a cross platform c/c++ project (Win32, Linux, OSX), I need to use the *printf functions to print some variables of type size_t. In some environments size_t's are 8 bytes and on …
5
votes
4answers
204 views

What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?

I'm dealing with some code at work that includes an expression of the form -(sizeof(struct foo)) i.e. the negation of a size_t, and I'm unclear on what the C and C++ standards …
1
vote
5answers
868 views

What’s sizeof(size_t) on 32-bit vs the various 64-bit data models?

On a 64-bit system, sizeof(unsigned long) depends on the data model implemented by the system, for example, it is 4 bytes on LLP64 (Windows), 8 bytes on LP64 (Linux, etc.). What's …
13
votes
7answers
2k views

unsigned int vs. size_t

I notice that modern C and C++ code seems to use size_t instead of int/unsigned int pretty much everywhere - from parameters for C string functions to the STL. I am curious as to …
4
votes
7answers
395 views

overflows in size_t additions

I like to have my code warning free for VS.NET and GCC, and I like to have my code 64 bit ready. Today I wrote a little module that deals with in memory buffers and provides acces …