Thursday, 16 August 2012

Which of the following is the correct order of evaluation for the below expression? | C Programming

z = x + y * z / 4 % 2 - 1

A. * / % + - =   
B. = * / % + -
C. / * % - + =   
D. * % / - + =

Ans: A

No comments: