Latest C Aptitude Question SOLUTION: integer x = 40, y = 35, z = 20, w = 10; Comment about the output of the following two statements: print x * y / z - w print x * y / (z - w) 1) Differ by 80 2) Same 3) Differ by 50