WCHAR_MIN - C wchar.h

C examples for wchar.h:WCHAR_MIN

Type

constant

from

<cstdint> 
<cwchar>

Description

Minimum value of wchar_t

Demo Code


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

int main()/*from   w ww  .  jav  a  2 s  . com*/
{

  printf("%d\n", WCHAR_MIN);
  return 0;
}

Related Tutorials