C examples for stdlib.h:size_t
type
<cstddef> <cstdio> <cstdlib> <cstring> <ctime> <cwchar>
Unsigned integral type
#include <stdio.h> #include <stdlib.h> int main ()/*w ww. java 2 s . com*/ { size_t n; n = 10; printf("%d", n); }