+ 1
Help in c++
Please help me. In c++ if int a=2, and int b=0. Which was a value of !a?
6 Answers
+ 2
!a should be 0
+ 2
!b should be 1
+ 2
int a = 2;
int b = 0;
// !a is 0
// !b is 1
+ 2
Thanks you very much for the reply
+ 2
You're WELCOME!!!
0
But I have another problem