InterviewSolution
Saved Bookmarks
| 1. |
What is the description of the following operator “Λ=”? |
|
Answer» “Λ=” represents bitwise XOR assignment operator. ( c = c Λ b or c Λ = b;) |
|