Vidyalelo
C Programming · Q86

C Fundamentals

Programming · C Programming · question 86

Q86

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
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board