For production code, is it better to write 1 line ?
Code:
x = ((x / 15) / 13) / 12;
or is it better to write multiple lines ?
Code:
x = x / 15;
x = x / 13;
x = x / 12;