+ 1
Why does it print a memory location when we run "cout<<cout"?
#include <iostream> using namespace std; int main() { cout<<cout; return 0; } Output:0x467f84
4 Antworten
+ 2
bcz cout is also an object of class ostream in the iostream.h header file
+ 1
At what does cout point to?
0
salam
0
Thanks for helping