Operators and Enums in C Language - Quiz

  • A Addition of a and n.
  • B Subtraction of a and n.
  • C Multiplication of a and n.
  • D Division of a and n.
  • A a *= b + 1;
  • B (c = a * b)!=(a = c + a);
  • C a = (b + 1)* a;
  • D All of the mentioned