C examples for stddef.h:size_t
data type
<stddef.h> <cstddef> <cstdio> <cstdlib> <cstring> <ctime> <cwchar>
Unsigned integral type
#include <stdio.h> #include <stddef.h> int main ()//from w w w .j a v a 2 s .c o m { size_t i = 100; printf ("%d\n",i); return 0; }