
26 Apr
2010
26 Apr
'10
8:34 p.m.
Hello,
This code proceces "xyz", contrary to user intention to bind "abc":
void echo(const char* s) {
cout << s << '\n';
}
int main()
{
string s("abc");
function