fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. const int x=5;
  5. int * p =&x;
  6. *p=6;
  7. printf("%d",*p);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 10320KB
stdin
Standard input is empty
stdout
6