fork download
  1. #include <iostream>
  2. int main()
  3. {
  4. int *ptr = nullptr;
  5. int &nullRef = *ptr;
  6. std::cout << "If only you knew the power of the Dark Side. Obi-Wan never told you about undefined behaviour.";
  7. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
If only you knew the power of the Dark Side. Obi-Wan never told you about undefined behaviour.