Why is address of char data not displayed?
When you are taking the address of b, you get char *. operator<< interprets that as a C string, and tries to print a character sequence instead of its address. try cout << “address of char :” << (void *) &b << endl instead. [EDIT] Like Tomek commented, a more proper cast to use in … Read more