Ubuntu – why cout &char operation same expresion not return the same answer
#include "iostream" using namespace std; int main() { char c = 'x'; cout << &c << endl; } cout << &c << endlprint 'x' 2. #include "iostream" using namespace std; int main() { int x = 222222; char c =…