fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. bool b1,b2,b3,b4,b5;
  6. for(bool *b = &b1; b <= &b5;b++){
  7. *b = true;
  8. }
  9.  
  10. // your code goes here
  11. return 0;
  12. }
Success #stdin #stdout 0s 3136KB
stdin
Standard input is empty
stdout
Standard output is empty