Ask Your Question

Revision history [back]

'A' means ascii code of A as integer. output of the code below is 35 ( 100 - 65 )

   int a = 100;
   a = a - 'A';
   std::cout << a;