0

Question about encrypting

Question is in the code https://code.sololearn.com/c03jQ7R334ji/?ref=app note => I did not make code public if you cant open it im gonna make it public.

2nd Jan 2018, 2:47 PM
Mustafa K.
Mustafa K. - avatar
2 Respostas
2nd Jan 2018, 3:39 PM
jay
jay - avatar
+ 4
You can add characters. They get converted to their ASCII code table number values, get added, then converted back. char a = ' ' char b = 'a' cout << a + b; Output is 32 (space) + whatever 'latin small letter a' is as char form
2nd Jan 2018, 2:57 PM
LunarCoffee
LunarCoffee - avatar