+ 1
What happening here how this possible?
5 ответов
+ 2
What happens is that, when you store a char in an integer variable, it saves the char's ASCII code, which for '9' is 57.
57 + 6 = 63
+ 4
when you determine format with %d for characters it show its ascii code and if you use %c instead. it show character
+ 1
How do i type caste back in to int
+ 1
you can use atoi()
+ 1
convert string into number:
https://www.sololearn.com/learn/C/2937/