C Programming and Technical Programming Program

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
4) Differ by 160

Read Solution (Total 5)

C Other Question

what is the the difference between NULL AND 0 in case of computeer programming...? whats the output of
main()
{
printf("%d",printf("%d",printf("%d",printf("%s","I Luv Program"))));}
PLZ Explain with solution