+ 4
consider this one its one good tricky code i encountered :
#include <iostream> using namespace std; int main() { cout << cout; return 0;} any guesses what would be the output ?
5 Respostas
+ 5
This outputs the address of 'cout' from std library. You can't guess this output using a human brain unless you memorize each and every address of the std library. But if you test it in an IDE, it will be `0x467f84`
+ 4
how can anyone explain?
+ 1
0x467f84
+ 1
0x467f84