what is size_t in C
- by benjamin button
Hi,
i am getting confused with size_t in C.
i know that it is returned by a 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++)