fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int v[] = {-1, 10, -100, 1000, -10000};
  5. int a, *p = v+2;
  6. a = *--p;
  7. printf("%d %d\n", a, *p++);
  8. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
10 10