fork download
  1. #include <stdio.h>
  2. int main()
  3. { int arr[] = {1, 3, 4, 2, 5};
  4. int a, *p = arr;
  5. a = ++*p;
  6. p += 2;
  7. printf("%d %d", a,*p); return 0; }
  8.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
2 4