fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int ary[5] = {100, 200, 12, 13, 14};
  6. int *ap;
  7. ap = ary;
  8. printf("%d", (*ap)++);
  9. printf("%d", *ap);
  10. printf("%d", ary[1]);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
100101200