What does it mean when numbers end with U

c, literals

Solution

The `u` is `unsigned`, that is: `1` is the `int` value 1, and `1u` is the `unsigned int` value 1.

Problem

As in this code: ``` int nx = (int)((rev3[gx]) / 193U); ``` Whats with the U in the end of 193 ?

Original source