+ 7
Is it possible?
Int a =97; Char b=a; Cout<<b; Answer is a
7 ответов
+ 5
Is it converted to ASCII values
+ 4
Yes it is but only because the integer value of a is 97.
Make variable a 98 and you will get a "b"
Make variable a 99 and you will get a "c"
https://code.sololearn.com/cbecgA1v8fQ0/?ref=app
+ 3
If you make a program, that loops from 0 to 200, in each iteration changes the integer value to characters and print it, you'll get the logic.
+ 2
Yes it is.
+ 2
That's a tricky question, but yes: the 'a' is actually a representation of the value of 97.
0
97