fork(4) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void function(int* & a){
  5. a = 0;
  6. }
  7.  
  8.  
  9. int main() {
  10. int* a;
  11. function(a);
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3452KB
stdin
Standard input is empty
stdout
Standard output is empty