fork download
  1. #include <stdio.h>
  2.  
  3. void Int(int *x){
  4. *x = 0;
  5. }
  6. typedef int *int_ptr;
  7. void IntPtr(int_ptr *x){
  8. *x = 0xDEADBEEF;
  9. }
  10.  
  11. void foo(int **x){
  12. *x = 0xBAADF00D;
  13. **x = 42;
  14. }
  15.  
  16.  
  17.  
  18. int main(void) {
  19. // your code goes here
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 2004KB
stdin
Standard input is empty
stdout
Standard output is empty