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