Is there a literal syntax to write a char or short? For example:
4--> int4L--> long4LL--> long long- 4C ?
- 4H ?
Or, do you need to cast it to do the literal notation, for example:
(char) 4--> char(short) 4--> short
Note: even if I write it as 'a', it still recognizes it as an int (at least when I inspect it in VS Code).