Operation “a = a * b + a” can also be written as ___________
(a) a *= b + 1;
(b) (c = a * b)!=(a = c + a);
(c) a = (b + 1)* a;
(d) All of the mentioned
I got this question in a job interview.
This interesting question is from Assignment Operators & Expressions in chapter Data Types, Operators and Expressions in C of C