fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct s {
  5. int i;
  6. };
  7.  
  8. struct s *reg;
  9.  
  10. int f(void)
  11. {
  12. int i;
  13.  
  14. i = reg->i;
  15. i = (reg)->i;
  16.  
  17. return i;
  18. }
  19.  
  20. int main() {
  21. // your code goes here
  22. return 0;
  23. }
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty