fork(1) download
  1. #include <iostream>
  2. #include<string.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. int x=5;
  7. const int* p = &x;
  8. *p++;
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 5496KB
stdin
Standard input is empty
stdout
Standard output is empty