I'd like to know, how to calculate integer values of strings in single quotes ' '.
My sample code is:
#include <stdio.h>
int main()
{
    int c = 'aA';
    int d = 'Aa';
    printf( "%d %d" , c, d);
    return 0;
}
And the output is:
24897 16737
What are those numbers? Is there any formula to calculate them ?
 
     
     
    