The code below y will return 72. I never knew we can do that, I mean, I understand char is just a code for
the character. But never thought it is legal to minus a char from an int. Can someone elaborate?
int y = 120; y -= '0';
return y;