size_t - C wchar.h

C examples for wchar.h:size_t

Type

data type

from

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

Description

Unsigned integral type

Demo Code

#include <wchar.h>
#include <stdio.h>

int main ()//  ww  w .java 2s. co  m
{
 
  size_t i = 10;
  
  printf("%d", i);

  return 0;
}

Related Tutorials