fork download
  1. #include <iostream>
  2. int main(){
  3. std::cout << ( 2 == 2 == (bool)2 ) << std::endl;
  4. std::cout << ( true == (bool)2 ) << std::endl;
  5. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
1
1