A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://docs.leaflabs.com/static.leaflabs.com/pub/leaflabs/maple-docs/latest/lang/cpp/char.html below:

char — Maple v0.0.12 Documentation

char¶

The char type stores a 1-byte character value (or integer with value from -128 to 127). Character literals are written in single quotes, like this: 'A' (for multiple characters - strings - use double quotes: "ABC").

Just like everything else on a computer, characters are stored as numbers. You can see the specific encoding in the ASCII chart. This means that it is possible to do arithmetic on characters, in which the ASCII value of the character is used (e.g. 'A' + 1 has the decimal value 66, since the ASCII value of the capital letter A in decimal is 65). See the Serial.println() documentation for more information about how characters are converted into numbers.

The char datatype is a signed type, meaning that it encodes numbers from -128 to 127. For an unsigned type, which stores values from 0 to 255, just use the type unsigned char (two words).

Example¶
// The following two lines are equivalent, using the ASCII
// character encoding:
char c = 'A';
char c = 65;

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4