fork download
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4. bool t[5];
  5. for(int i = 0; i < 5; i++)
  6. t[4 - i] = !(i % 2);
  7. cout << t[0] && t[2];
  8. return 0;
  9. }
  10.  
  11.  
Success #stdin #stdout 0.01s 5292KB
stdin
Standard input is empty
stdout
1