fork download
  1. #include <stdio.h>
  2.  
  3. void foo() { }
  4.  
  5. int main(void) {
  6. // your code goes here
  7. printf("%d\n", (int)*foo);
  8. printf("%d\n", (int)**foo);
  9. printf("%d\n", (int)***foo);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
134513888
134513888
134513888