void print(int x) { if (x--) print(x / 26), putchar((x % 26) + 'A'); }
This is part of a code. I don't understand what the comma after print(x / 26) does. And when x=55 it prints BC.
void print(int x) { if (x--) print(x / 26), putchar((x % 26) + 'A'); }
This is part of a code. I don't understand what the comma after print(x / 26) does. And when x=55 it prints BC.