InterviewSolution
Saved Bookmarks
| 1. |
Meaning of =! in c++ |
|
Answer» ong>Answer: C++ does not have an =! operator, which immediately MEANS that this is an = operator followed by a ! operator. So, you SIMPLY have a = ! b in the if condition. |
|