size_t - C stdlib.h

C examples for stdlib.h:size_t

Type

type

From

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

Description

Unsigned integral type

Demo Code

#include <stdio.h>
#include <stdlib.h>

int main ()/*w  ww. java  2 s . com*/
{
  size_t n;

  n = 10;

  printf("%d", n);

}

Related Tutorials