InterviewSolution
Saved Bookmarks
| 1. |
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 mentionedI 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 |
|
Answer» CORRECT ANSWER is (d) All of the mentioned Explanation: NONE. |
|