Asociatividad del operador C
x * y / z => (x * y) / z
x / y * z => (x / y) * z
*, / follows left to right associativity.
Mayank
x * y / z => (x * y) / z
x / y * z => (x / y) * z
*, / follows left to right associativity.