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