| TEA vs. Ansi C | Index |
The TEA language a subset of the Ansi C language with a few differences in some operations:
Right Shift
In TEA, a right shift on a signed or unsigned variable will perform an arithmetic shift. This means the sign bit is always shifted right into the value. In Ansi C, a right shift on an unsigned variable shifts zeros into the value.
Related: