char a[10] = "123";
char b[10] = "234";
if (a > b) {
printf("here");
}


My question is, what is that comparison doing. Is it comparing the memory address of those two variables? Or what?