fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int *px;
  5. printf("%u %d\n", &px, *px);
  6. px = NULL; // Suppose that malloc retured NULL
  7. printf("%u %d\n", &px, *px);
  8. return 0;
  9. }
  10.  
Runtime error #stdin #stdout 0s 4656KB
stdin
Standard input is empty
stdout
Standard output is empty