fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int* yoba = NULL;
  6. int& peka = *yoba;
  7.  
  8. std::cout << peka << std::endl;
  9.  
  10. return 0;
  11. }
Runtime error #stdin #stdout 0s 3408KB
stdin
Standard input is empty
stdout
Standard output is empty