fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=25;
  5. int*x=&a;
  6. int **y=&x;
  7. *x=5;
  8. printf("%d\n",*x);
  9. printf("%d",**y);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 5324KB
stdin
Standard input is empty
stdout
5
5