previous | start | next

tmax

What is the largest 32 bit signed int? (I.e, what is tmax?)

In hex,

 Hex:     tmax = 0x7FFFFFF;
 Binary:  tmax = 0111 1111 1111 1111 1111 1111 1111 1111 
 Decimal: tmax = 2147483647 = 231 - 1
   


previous | start | next