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