0
The question is not very clear. Do you mean to add two characters? You can also add an integer to the character. char c = 'a'; // c can also be interpreted as a number (98, ASCII code) char c1 = c+1; cout << c1; //Print the character 'b'
19th Feb 2018, 6:59 AM
Ravi Chandra Enaganti
Ravi Chandra Enaganti - avatar