This might be a beginner question and understanding how cout works is probably key here. If somebody could link to a good explanation, it would be great.
cout<<cout and cout<<&cout print hex values separated by 4 on a linux x86 machine.
|
|
Since |
|||
|
|
|
|
|||
|
|
|
|
|||
|
|
|
As already stated, It prints the value &cout + 4 because the conversion is done in the base implementation, and casts to its own type, this is from libstdc++:
|
||||
|
|