C Programming and Technical Programming Program

Which of the following is the correct order of evaluation for the below expression?
z = x + y * z / 4 % 2 - 1

Options
1) * / % + - =
2) = * / % + -
3) / * % - + =
4) * % / - + =

Read Solution (Total 5)

C Other Question

What are enumerations? What are register variables? What are the advantage of
using register variables?