Possibility 1: int comes first, hexadecimal
(int)'E' + 5 = 14 + 5 = 19Possibility 2: int comes first, ascii
(int)'E' + 5 = 69 + 5 = 74Possibility 3: + comes first, hexadecimal
(int)'E' + 5 = (int)'E5' = 229Possibility 4: + comes first, scientific notation
(int)'E' + 5 = (int)'E5' = 100000I think itβs most likely possibility 1
two answers:
if we are talking about ascii, 74
if we are talking about the tocharcode stuff, 107
74