Answers for "cpp and or"

C++
7

or in cpp

a || b = a or b
Posted by: Guest on February-03-2021
0

Or in c++

/*
In c++ or c, "or" can be || 
example*/

if(a=1 || a=2){
  b++
  }
Posted by: Guest on January-30-2022

Browse Popular Code Answers by Language