Question : char x = \'a\'; x += 3; // ok x = x + 3; // compile ti开发者_Python百科me error Because x += 3 is equivalent to x = (char)(x+3),while x + 3 is default to int operation, assign an int to c
I have a function that finds any ISO 8859-1 symbol within a given string, and tries converting it to its proper meaning. However, I get question marks instead where I\'d like actual values lik开发者_如