void f(char * & pch) {
cout << &pch << " " << pch << endl;
}
int main() {
char *pch2 = new char[11];
strcpy(pch2, "1234567890");
cout << &pch2 << " " << pch2 << endl;
f(pch2);
return 0;
}
gives next output:
0xbfa0d62c 1234567890
0xbfa0d62c 1234567890
but if i would modify first row as follows
void f(char const * const & pch) {
i will get:
0xbfec7df8 1234567890
0xbfec7dfc 1234567890
is difference in pointers appeared because of need to mark new memory cell as const or something else?
fwould likely be inlined. – Gene Bushuyev Nov 29 '11 at 18:11