[ create a new paste ] login | about

Link: http://codepad.org/RfuVtPsm    [ raw code | output | fork ]

C++, pasted on Apr 2:
1
2
3
4
5
6
7
8
9
10
11
using namespace std;

void foo(int & y){
    y=2;
}

int main(){
    int x=1;
    foo(x);
    cout<<x;
}


Output:
1
2


Create a new paste based on this one


Comments: