Microprocessors - Engineering

Q1:

Which of the following is not a valid arithmetic statement in C?

A x = x + 1

B x = y * z

C x * y = z

D z = y / x

ANS:C - x * y = z

Left hand side must be a variable name.