Code:
char a = 'A';
char b = 'T';
a < b ? 0:1;

int x = 0;
int y = 1;
x < y? 0:1;
the speed of comparing for a vs b and x vs y ,
which is faster?
why?