How do I make the String resultado
receive the int value of cont3
and the char value of c[cont]
?
resultado=" ";
resultado=resultado+to_string(**cont3**)+to_string(**c[cont1**]);
I tried to use to_string()
but it did not solve my problem.