fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int tab[] = { 17, 13, 11 };
  5. int *ptr = &tab[1];
  6. printf("%d ", *(tab + 2));
  7. printf("%d ", *(ptr--));
  8. printf("%d\n", *(ptr + 1));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4464KB
stdin
Standard input is empty
stdout
11 13 13