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++)
|
feedback
|
| |||||||||||
feedback
|
|
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 | |||||||||||
feedback
|
|
Best answered here: http://en.wikipedia.org/wiki/Size_t | |||
|
feedback
|
|
sblom already answered. Just to add advantage of using size_t is in terms of portability. | ||||
|
feedback
|
intifsome_sizeis signed,size_tif it is unsigned. – Nate Mar 31 '10 at 5:59