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