Tagged Questions

52
votes
6answers
21k 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 ...
44
votes
7answers
6k 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 that I found on the ...
11
votes
3answers
296 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 ...
11
votes
6answers
3k views

What is size_t in C?

I am getting confused with size_t in C. I know that it is returned by the sizeof operator. But what exactly it is? Is it a datatype? Let's say I have a for loop int i; or size_t i; //which one ...
10
votes
4answers
258 views

What is a portable method to find the maximum value of size_t?

I'd like to know the maximum value of size_t on the system my program is running. My first instinct was to use negative 1, like so: size_t max_size = (size_t)-1; But I'm guessing there's a better ...
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. ...
8
votes
6answers
187 views

Why is size_t better?

The title is actually a bit misleading, but I wanted to keep it short. I've read about why I should use size_t and I often found statements like this: size_t is guaranteed to be able to express ...
6
votes
5answers
403 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
426 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 ...
5
votes
1answer
2k views

Platform independent size_t Format specifiers in c?

I want to print out a variable for type size_t in c but it appears that size_t is aliased to different variable types on different architextures. For example on one machine (64-bit) the following code ...
4
votes
4answers
10k 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 sizeof(size_t) ...
4
votes
6answers
954 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 access to the data via a ...
3
votes
4answers
381 views

Why size_t when int would suffice?

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 ...
2
votes
5answers
298 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 ...
1
vote
5answers
74 views

Iterating Through All Values from N to 0 inclusive for an Unsigned Value

I have this code that works fine for regular signed integers that I am trying to write an equivalent version that will work with size_t (as in that as of now start and count are ints and i need them ...
1
vote
2answers
1k views

C: cast int to size_t

What is the proper way to convert/cast an int to a size_t in C99 on both 32bit and 64bit linux platforms? Example: int hash(void * key) { //... } int main (int argc, char * argv[]) { size_t ...
1
vote
2answers
168 views

Strange behaviour with for loop and size_t

size_t size = sizeof(int); printf("%d\n", size); int i; for (i = 0; i < size; i++) { printf("%d ", i); } The above code (using gcc) outptus 4 0 1 2 3 size_t size = sizeof(int); ...
1
vote
3answers
572 views

Should I always include stddef.h if I use sizeof and size_t

if I'm using the sizeof operator and making use of size_t in my code, do I have necessarily have to include stddef.h? I haven't included stddef.h, and my code compiles without warning with both ...
1
vote
3answers
789 views

Can we change the size of size_t in C?

Can we change the size of size_t in C?
0
votes
2answers
119 views

Objective-C Runtime: What to put for size & alignment for class_addIvar?

The Objective-C Runtime provides the class_addIvar C function: BOOL class_addIvar(Class cls, const char *name, size_t size, uint8_t alignment, const char *types) What do I put ...
0
votes
2answers
103 views

What determines how much memory can be allocated?

This is a follow-up to my previous question about why size_t is necessary. Given that size_t is guaranteed to be the smallest integer big enough to represent the largest size of a block of memory you ...
0
votes
8answers
585 views

Is size_t portable?

gcc 4.4.1 C99 I am using size_t and size_t is a unsigned int. However, that depends if you are running 32 bit or 64 bit. I will be using size_t to store the size of a buffer. So I don't think this ...