fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int *p;
  6. *p= 2;
  7. printf("%d",&p);
  8.  
  9. return 0;
  10. }
Runtime error #stdin #stdout 0s 9280KB
stdin
Standard input is empty
stdout
Standard output is empty