fork(17) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void dummy(bool& value)
  5. {
  6. cout << value << " - " << (void*)&value << endl;
  7. value = true;
  8. }
  9.  
  10. int main()
  11. {
  12. bool value = false;
  13. dummy(value);
  14. cout << value << " - " << (void*)&value << endl;
  15.  
  16. // your code goes here
  17. return 0;
  18. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
0 - 0xbfbb032f
1 - 0xbfbb032f