+ 1
What does a single pipe mean in c++ (|)
What is the difference between bitwise or and logical or (|) vs (||)
1 Answer
+ 4
Bitwise | compares bits by bits.
|| compares two booleans.
https://www.sololearn.com/learn/4073/?ref=app
What is the difference between bitwise or and logical or (|) vs (||)