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