size_t - C time.h

C examples for time.h:size_t

Type

data type

from

<cstddef> 
<cstdio> 
<cstdlib> 
<cstring> 
<ctime> 
<cwchar>

Description

Unsigned integral type

Demo Code


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

Related Tutorials