Is there a way to have the decimal value (in int) of ASCII / extended ASCII characters in C (especially the extended ones)
ASCII & extended ASCII table : http://www.theasciicode.com.ar/
Example of my problem with some code :
int a = (int) 'a';
int b = (int) '│';
printf("%i\n", a);
printf("%i\n", b);
and the output is :
97
14849154
in the ASCII table, "│" is normally 179.