tags:

views:

85

answers:

1

to find minimum and maximam number

A: 

See LIMITS.H. It contains all kinds of definitions, like:

  • SHRT_MIN (minimum value of a signed short value)
  • SHRT_MAX (maximum value of a signed short value)
  • USHRT_MAX (maximum value of an unsigned short value)
  • ...
Patrick