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. }
Success #stdin #stdout 0s 10304KB
stdin
Standard input is empty
stdout
Standard output is empty