fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int *arr[3];
  5. int a=12,b=24,c=36;
  6. arr[0]=&a;
  7. arr[1]=&b;
  8. arr[2]=&c;
  9. printf("%d\n",*arr[1]+**arr+1);
  10. }
  11.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
37