size_t - C stddef.h

C examples for stddef.h:size_t

Type

data type

From

<stddef.h>
<cstddef> 
<cstdio> 
<cstdlib> 
<cstring> 
<ctime> 
<cwchar>

Description

Unsigned integral type

Demo Code


#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;
}

Related Tutorials