First time here? Check out the FAQ!
answered 2016-09-29 11:09:41 -0600
'A' means ascii code of A as integer. output of the code below is 35 ( 100 - 65 )
'A'
int a = 100; a = a - 'A'; std::cout << a;