Click to See Complete Forum and Search --> : A question about "size_t"


George Ma
September 1st, 2002, 02:00 AM
Hi, everyone!

I have searched the help page for "size_t" but failed
to find the help page and information about "size_t".

Where can I find the help page or information about
"size_t"? Can you paste detailed information about
"size_t".

Thanks.

Cheers,
George

dude_1967
September 1st, 2002, 04:00 AM
Hello George,

size_t is a basic type defined in standard C. It is typedef'ed as unsigned int and it's size is thus dependent on the compiler implementation. The result of the sizeof() operator is size_t. The typedef for size_t can be found in stddef.h or possibly some other header.

Chris.

:)