Home » C Programming » Operators » Question
  1. Which of the following is correct order of evaluation for the expression given below ?

    c = a + b * c / 4 % 2 -1;
    1. * / % + - =
    2. = * / % + -
    3. / * % - + =
    4. * / % - + =
    5. - % / * + =
Correct Option: A

Refer precedence table
The output will be
* / % + - =



Your comments will be displayed only after manual approval.