fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. char *cNeu = (char*)0x4711; // or NULL or any other random value
  7. printf("%p\n", cNeu);
  8. printf("%s\n", cNeu);
  9. return 0;
  10. }
  11.  
Runtime error #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty