Possible Duplicate:
What are the differences between pointer variable and reference variable in C++?
Sometimes I see that kind of declaration:
void f(int& a,...){
}
What does & mean? Because * is pointer, without * is object, so what is that?
Possible Duplicate:
What are the differences between pointer variable and reference variable in C++?
Sometimes I see that kind of declaration:
void f(int& a,...){
}
What does & mean? Because * is pointer, without * is object, so what is that?