fork download
  1. #include <iostream>
  2.  
  3. extern volatile int x;
  4.  
  5. int main() {
  6. int y;
  7. std::cin >> y;
  8. x = y;
  9.  
  10. x = 42;
  11. std::cout << x;
  12.  
  13. }
  14.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty