fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int *p;
  5.  
  6. /* この行を削除する */
  7. *p = 10;
  8. printf("%d\n", *p);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
10