NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
byte

In NXC the byte type is an unsigned 8-bit value.

This type can store values from zero to UCHAR_MAX. You can also define an unsigned 8-bit variable using the unsigned keyword followed by the char type.

byte x=12;
unsigned char b = 0xE2;