C Programming and Technical Programming Technical

what is the the difference between NULL AND 0 in case of computeer programming...?

Read Solution (Total 3)

C Other Question

frequently asked questions in placement tests 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