No commas are allowed in an integer constant.
Examples: 34, -13, 0, 234323, -85743
No commas are allowed in a floating point constant.
Examples: 3.043, -12.32, 0.00032, 5.98E+24, 9.11E-31
Some nonprintable characters are represented as escape sequences:
| '\'' | Single Quote |
| '\"' | Double Quote |
| '\\' | Backslash |
| '\a' | Audible Bell |
| '\b' | Backspace |
| '\f' | Form Feed |
| '\n' | Line Feed |
| '\r' | Carriage Return |
| '\t' | Tab |
| '\0' | Null Character |
| '\xhh' | ASCII Character in Hex Notation |
| '\xhhhh' | Unicode Character in Hex Notation |
| 10000000000L | long |
| 5.27F | float |
| 5.27M | decimal |