fork(6) download
  1. int main()
  2. {
  3. int a = 1;
  4. int b = 2;
  5. int& c = a;
  6. c = b;
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0s 3292KB
stdin
Standard input is empty
stdout
Standard output is empty