Consider this small snippet
int x = 5;
std::cout << &x;
This prints some random hexadecimal number I.e. "0x62fe1c".
char x = 'a';
std::cout << &x;
While this version prints "a╨▬φ". I don't know what that is.
Consider this small snippet
int x = 5;
std::cout << &x;
This prints some random hexadecimal number I.e. "0x62fe1c".
char x = 'a';
std::cout << &x;
While this version prints "a╨▬φ". I don't know what that is.