I am starter of C++. When I study the opensource, I see the function.
int foo(int a, int b){
return a=b;
}
But I only know the function return such as...
int foo(int a, int b){
return a;
}
what is the meaning of this "return a=b" statement?