fork(5) download
  1. #include <iostream>
  2.  
  3. int main() {
  4. bool a;
  5. if( a ) {
  6. std::cout << "True" << std::endl;
  7. } else {
  8. std::cout << "False" << std::endl;
  9. }
  10.  
  11. int b;
  12. std::cout << b << std::endl;
  13. }
  14.  
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
False
0