I got a _n
function returning an int with a q
string param.
Since I'm italian string in param may contain accented letters (such as àèìòù).
Those special letters are not rendered correctly in cout and I was trying to use chars, but the concatenation with the + operator is not working.
U = _n("Quanto " + char (232) + " urgente l'evento?");
[Error] invalid operands of types 'const char*' and 'const char [19]' to binary 'operator+'
I also tried different ways such as this