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 should i use?
for(i = 0; i < some_size; i++)
|
|||||||||||||||||||
|
|
In your example, if your loop index is going to be always greater than 0, it might make sense to use When you use a
and you want to find the difference of the lengths of
This is because There are some functions in C/POSIX that could/should use |
|||||||||||||
|
|
From my understanding, size_t is an unsigned integer whose bit size is large enough to hold a pointer of the native architecture. So sizeof(size_t) >= sizeof(void*) |
|||
|
|
intifsome_sizeis signed,size_tif it is unsigned. – Nate Mar 31 '10 at 5:59