Maximum and minimum value for various data type.

Hi,

Is there a quick way of getting the maximum/minimum values for bytes/ints/longs etc?

In c# there are functions like this....

Int32.MaxValue

Is there an equivalent to this for arduinos?

thanks

Arduino uses C++, which use the same primitive data types for the most part. If you still need them, utilize climits.h

ok, thanks