function(const int a){
}
function(const int &a){
}
In both the cases i can't change the value of a. Then what is the difference`
function(const int a){
}
function(const int &a){
}
In both the cases i can't change the value of a. Then what is the difference`