C examples for stdio.h:size_t
data type
<cstddef> <cstdio> stdio.h
Unsigned integral type
#include <stdio.h> int main ()//from w w w.j a va2 s .co m { size_t i; i = 100; printf("%d",i); return 0; }