fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. for (int i = 0; i < 2; i++) {
  6. bool a[50];
  7. if (i == 0)
  8. for (int j = 0; j < 50; j++)
  9. a[j] = true;
  10. cout << a[25] << "\n";
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5516KB
stdin
Standard input is empty
stdout
1
1