SHRT_MIN - C limits.h

C examples for limits.h:SHRT_MIN

Type

Macro

Description

Minimum value for an object of type short int. -32767 (-2^15+1) or less*

Demo Code

#include <iostream>
#include <limits.h>

using namespace std;
int main()/* ww w  .  ja v a 2  s  . co  m*/
{
    cout << SHRT_MIN;
    return 0;
}

Related Tutorials