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

In NXC the char type is a signed 8-bit value.

This type can store values from SCHAR_MIN to SCHAR_MAX. The char type is often used to store the ASCII value of a single character. Use Character Constants page has more details about this usage.

char ch=12;
char test = 'A';