0

invertor of c++

12th Jul 2016, 5:09 AM
Ganessh
Ganessh - avatar
2 Answers
0
Pls put in the effort to write an intelligible question so someone can answer. Thank you.
12th Jul 2016, 8:17 AM
Stefan
Stefan - avatar
0
int a = 5; int b = -a; //Unary operator-, inverts the sign bool c = !a; //Boolean invert. int d = ~a; //Bitwise inverter.
12th Jul 2016, 12:15 PM
this->getName()