InterviewSolution
Saved Bookmarks
| 1. |
Pick out the compound assignment statement.(a) a = a – 5(b) a = a / b(c) a -= 5(d) a = a + 5This question was posed to me in final exam.This question is from Essential Operators in section Source Files, Classes and Operator Overloading in C++ of C++ |
|
Answer» The correct answer is (c) a -= 5 |
|