Tagged Questions

51
votes
6answers
19k 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 the reason for this ...
11
votes
3answers
257 views

variables of type size_t and ptrdiff_t

By reading on the posts online related to size_t and ptrdiff_t, I want to confirm the following: if the max size of an array is less than 1/2*(max number represent-able by size_t), I can safely use ...
10
votes
9answers
3k 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 others they are 4. ...
6
votes
5answers
383 views

Making size_t and wchar_t portable?

To my understanding the representation of size_t and wchar_t are completely platform/compiler specific. For instance I have read that wchar_t on Linux is now usually 32bit, but on Windows it is 16bit. ...
6
votes
5answers
411 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 require of compilers ...
2
votes
5answers
288 views

Is size_t only in C++ standard or C standard as well?

Is size_t only in C++ standard or C standard as well? I cannot find a C header in the "/usr/include" tree that defines size_t. If it is not in the C std, is GCC just doing some magic to make things ...