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