Strange question, but someone showed me this, I was wondering can you use the not ! operator for int in C++? (its strange to me).
#include u
You can, !b is equivalent to (b == 0).
!b
(b == 0)