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