fork download
  1. #include<stdio.h>
  2.  
  3. void f(int &k)
  4. {
  5. k++;
  6. }
  7.  
  8.  
  9. int main()
  10. {
  11. int n = 1;
  12. f(n);
  13. printf("%d\n", n);
  14. }
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
2