For example 'a' has ASCII code 97 and we could use
char ch = 'a';
or
char ch = 97;
With auto we could write
auto ch = 'a';
for the first case, but how to get char variable by numerical ascii code during deduction?
This doesn't work for me:
auto ch = '\97';